| 1 | <?php |
||
| 13 | class CleanUpAccessTokensCommand extends Command |
||
| 14 | { |
||
| 15 | protected static $defaultName = 'ddr:rest:access-token:cleanup'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var AccessTokenServiceInterface |
||
| 19 | */ |
||
| 20 | private $accessTokenService; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * CleanUpAccessTokensCommand constructor. |
||
| 24 | */ |
||
| 25 | 2 | public function __construct(AccessTokenServiceInterface $accessTokenService) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 2 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 39 | } |
||
| 40 |