PHPIndex

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`).

2020_01_11_FooBar.php
wget 'https://sme10.lists2.roe3.org/FreshRSS/tests/fixtures/migrations_with_failing/2020_01_11_FooBar.php'
View Content
<?php
declare(strict_types=1);

class FreshRSS_Migration_2020_01_11_FooBar {
	/**
	 * @return bool true if the migration was successful, false otherwise
	 */
	public static function migrate(): bool {
		return true;
	}
}
2020_01_12_Baz.php
wget 'https://sme10.lists2.roe3.org/FreshRSS/tests/fixtures/migrations_with_failing/2020_01_12_Baz.php'
View Content
<?php
declare(strict_types=1);

class FreshRSS_Migration_2020_01_12_Baz {
	/**
	 * @return bool true if the migration was successful, false otherwise
	 */
	public static function migrate(): bool {
		return false;
	}
}