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