| Total Complexity | 5 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class CacheFlushCommand extends Command |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var Client |
||
| 14 | */ |
||
| 15 | private Client $s3Client; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * CacheFlushCommand constructor. |
||
| 19 | * |
||
| 20 | * @param Client $s3Client |
||
| 21 | * @param string|null $name |
||
| 22 | */ |
||
| 23 | public function __construct(Client $s3Client, ?string $name = null) |
||
| 24 | { |
||
| 25 | parent::__construct($name); |
||
| 26 | |||
| 27 | $this->s3Client = $s3Client; |
||
| 28 | } |
||
| 29 | |||
| 30 | protected function configure(): void |
||
| 36 | } |
||
| 37 | |||
| 38 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 55 |