This page lists files in the current directory. You can view content, get download/execute commands for Wget, Curl, or PowerShell, or filter the list using wildcards (e.g., `*.sh`).
wget 'https://lists2.roe3.org/FreshRSS/tests/fixtures/migrations/2019_12_22_FooBar.php'
<?php
declare(strict_types=1);
class FreshRSS_Migration_2019_12_22_FooBar {
/**
* @return bool true if the migration was successful, false otherwise
*/
public static function migrate(): bool {
return true;
}
}
wget 'https://lists2.roe3.org/FreshRSS/tests/fixtures/migrations/2019_12_23_Baz.php'
<?php
declare(strict_types=1);
class FreshRSS_Migration_2019_12_23_Baz {
/**
* @return bool true if the migration was successful, false otherwise
*/
public static function migrate(): bool {
return true;
}
}
wget 'https://lists2.roe3.org/FreshRSS/tests/fixtures/migrations/2022_01_17_IgnoredFile'