| 1 | <?php |
||
| 10 | abstract class PreCommitExecutor |
||
| 11 | { |
||
| 12 | /** @var HookConfigInterface */ |
||
| 13 | protected $preCommitConfig; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return bool |
||
| 17 | */ |
||
| 18 | protected function isEnabled() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return array |
||
| 25 | */ |
||
| 26 | protected function getMessages() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | abstract protected function commandName(); |
||
| 35 | } |
||
| 36 |