| 1 | <?php |
||
| 22 | class AbstractPurgeCommand extends Command |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected const STORE_VIEW_ID = 'store'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var VarnishActionManagerInterface |
||
| 31 | */ |
||
| 32 | protected $varnishActionManager; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * AbstractPurgeCommand constructor. |
||
| 36 | * @param VarnishActionManagerInterface $varnishActionManager |
||
| 37 | * @param null $name |
||
| 38 | */ |
||
| 39 | public function __construct( |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param InputInterface $input |
||
| 49 | * @return void |
||
| 50 | */ |
||
| 51 | protected function passStoreViewIfSet(InputInterface $input): void |
||
| 59 | } |
||
| 60 |