| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | protected function configure(): void |
||
| 30 | { |
||
| 31 | parent::configure(); |
||
| 32 | $this |
||
| 33 | ->setName('cache:warmup:aop') |
||
| 34 | ->setDescription('Warm up the cache with woven aspects') |
||
| 35 | ->setHelp( |
||
| 36 | <<<EOT |
||
| 37 | Initializes the kernel and, if successful, warm up the cache for PHP |
||
| 38 | files under the application directory. |
||
| 39 | |||
| 40 | By default, the cache directory is taken from configured AspectKernel class. |
||
| 41 | EOT |
||
| 42 | ) |
||
| 43 | ; |
||
| 44 | } |
||
| 45 | |||
| 59 |