| Total Complexity | 3 | 
| Total Lines | 33 | 
| Duplicated Lines | 0 % | 
| Coverage | 92.31% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 14 | abstract class AbstractLockedCommand extends Command  | 
            ||
| 15 | { | 
            ||
| 16 | /** @var Locker */  | 
            ||
| 17 | private $locker;  | 
            ||
| 18 | |||
| 19 | 11 | public function __construct(Locker $locker)  | 
            |
| 23 | }  | 
            ||
| 24 | |||
| 25 | 11 | final protected function execute(InputInterface $input, OutputInterface $output): ?int  | 
            |
| 41 | }  | 
            ||
| 42 | }  | 
            ||
| 43 | |||
| 44 | abstract protected function lockedExecute(InputInterface $input, OutputInterface $output): int;  | 
            ||
| 45 | |||
| 46 | abstract protected function getLockConfig(): LockedCommandConfig;  | 
            ||
| 47 | }  | 
            ||
| 48 |