AbstractCommand.php 138 B

12345678910
  1. <?php
  2. declare(strict_types=1);
  3. namespace TestApp\Command;
  4. use Cake\Command\Command;
  5. abstract class AbstractCommand extends Command
  6. {
  7. }