| Total Complexity | 2 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class ClearProcessorCacheCommand extends Command |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $signature = 'graphql:clear:processor:cache'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $description = 'Clears the GraphQL processor cache'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var GraphQLService |
||
| 23 | */ |
||
| 24 | private $graphqlService; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * ClearProcessorCacheCommand constructor. |
||
| 28 | * |
||
| 29 | * @param GraphQLService $graphqlService |
||
| 30 | */ |
||
| 31 | public function __construct(GraphQLService $graphqlService) |
||
| 32 | { |
||
| 33 | parent::__construct(); |
||
| 34 | |||
| 35 | $this->graphqlService = $graphqlService; |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritDoc |
||
| 40 | */ |
||
| 41 | public function handle() |
||
| 44 | } |
||
| 45 | } |
||
| 46 |