| 1 | <?php |
||
| 16 | class FunctionChecker extends AbstractChecker |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Returns backwards compatibility checker name. |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getName() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Checks backwards compatibility and returns violations by category. |
||
| 31 | * |
||
| 32 | * @param ExtendedPdoInterface $source_db Source DB. |
||
| 33 | * @param ExtendedPdoInterface $target_db Target DB. |
||
| 34 | * |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function check(ExtendedPdoInterface $source_db, ExtendedPdoInterface $target_db) |
||
| 41 | |||
| 42 | } |
||
| 43 |