| 1 | <?php |
||
| 3 | namespace WikibaseQuality\ExternalValidation; |
||
| 4 | |||
| 5 | use DatabaseUpdater; |
||
| 6 | |||
| 7 | final class WikibaseQualityExternalValidationHooks { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @param DatabaseUpdater $updater |
||
| 11 | * |
||
| 12 | * @return bool |
||
| 13 | */ |
||
| 14 | public static function onCreateSchema( DatabaseUpdater $updater ) { |
||
| 21 | |||
| 22 | public static function onUnitTestsList( &$paths ) { |
||
| 23 | $paths[] = __DIR__ . '/tests/phpunit'; |
||
| 24 | return true; |
||
| 28 |