1 | <?php |
||
7 | abstract class ServiceAbstract |
||
8 | { |
||
9 | protected $command; |
||
10 | |||
11 | protected $key; |
||
12 | |||
13 | protected $naming; |
||
14 | |||
15 | protected $filesystem; |
||
16 | |||
17 | public function __construct(CommandAbstract $command, ?NamingAbstract $naming = null) |
||
28 | |||
29 | protected function addGeneratedFileToIdeStack() |
||
35 | |||
36 | private function getSplFile(string $pathToFile): \SplFileInfo |
||
46 | |||
47 | public function getConsoleOutput() |
||
51 | } |
||
52 |