blob: 21f673213d9fe842a526fc2ba8d4aadce9fa9b8d (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
class FreshRSS_Migration_2019_12_22_FooBar {
/**
* @return bool true if the migration was successful, false otherwise
*/
public static function migrate(): bool {
return true;
}
}
|