| 1 | <?php |
||
| 22 | abstract class AbstractRoutine extends AbstractExtra |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @param string $identifier |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | abstract protected function showCreate($identifier); |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $identifier |
||
| 32 | * @param ArrayObject $create |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | abstract protected function createQuery($identifier, ArrayObject $create); |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param File $file |
||
| 39 | * @param ResultSet $procedures |
||
| 40 | * @return $this |
||
| 41 | */ |
||
| 42 | protected function write(File $file, ResultSet $procedures) |
||
| 57 | } |
||
| 58 |
Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.