1 | <?php |
||
26 | class CompileCommand extends Command |
||
27 | { |
||
28 | /** @var string */ |
||
29 | protected $name = 'ytake:aspect-compile'; |
||
30 | |||
31 | /** @var string */ |
||
32 | protected $description = 'compiles all known classes'; |
||
33 | |||
34 | /** @var AspectManager */ |
||
35 | protected $aspectManager; |
||
36 | |||
37 | /** |
||
38 | * CompileCommand constructor. |
||
39 | * |
||
40 | * @param AspectManager $aspectManager |
||
41 | */ |
||
42 | public function __construct(AspectManager $aspectManager) |
||
47 | |||
48 | /** |
||
49 | * @return void |
||
50 | */ |
||
51 | public function handle() |
||
56 | } |
||
57 |