aboutsummaryrefslogtreecommitdiff
path: root/tests/fixtures/migrations_with_failing/2020_01_12_Baz.php
blob: 92a9fad638c88973d85ad87087f8feb2f0ee7ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?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;
	}
}