| Total Complexity | 2 | 
| Total Lines | 38 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 15 | class UpdateSchemaLockCommand extends Command implements CommandInterface | ||
| 16 | { | ||
| 17 | |||
| 18 | /** | ||
| 19 | * @var string | ||
| 20 | */ | ||
| 21 | protected $signature = 'graphql:schema:lock:update'; | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @var string | ||
| 25 | */ | ||
| 26 | protected $description = 'Updates the schema.lock file'; | ||
| 27 | |||
| 28 | /** | ||
| 29 | * @var GraphQLService | ||
| 30 | */ | ||
| 31 | private $graphQlService; | ||
| 32 | |||
| 33 | /** | ||
| 34 | * UpdateSchemaLockCommand constructor. | ||
| 35 | * | ||
| 36 | * @param GraphQLService $graphQlService | ||
| 37 | */ | ||
| 38 | public function __construct(GraphQLService $graphQlService) | ||
| 39 |     { | ||
| 40 | parent::__construct(); | ||
| 41 | |||
| 42 | $this->graphQlService = $graphQlService; | ||
| 43 | } | ||
| 44 | |||
| 45 | /** | ||
| 46 | * @inheritDoc | ||
| 47 | */ | ||
| 48 | public function handle() | ||
| 53 | } | ||
| 54 | } | ||
| 55 |