blob: 4a5bcb314d571ac2fe9484821374bd65df00e7d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?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;
}
}
|