| Total Complexity | 5 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class CreateSchemaCommand extends BaseCommand |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * CreateSchemaCommand constructor. |
||
| 20 | * |
||
| 21 | * @param array $parameters |
||
| 22 | */ |
||
| 23 | public function __construct(array $parameters) |
||
| 24 | { |
||
| 25 | parent::__construct( |
||
| 26 | 'iml_cache_create_schema', |
||
| 27 | 'pdo', |
||
| 28 | $parameters |
||
| 29 | ); |
||
| 30 | } |
||
| 31 | |||
| 32 | protected function configure() |
||
| 33 | { |
||
| 34 | $this |
||
| 35 | ->setName('iml:cache:schema:create') |
||
| 36 | ->setDescription('Create database schema.') |
||
| 37 | ->setHelp('This command creates the database schema (only with PDO driver).') |
||
| 38 | ; |
||
| 39 | } |
||
| 40 | |||
| 41 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 55 | } |
||
| 56 | } |
||
| 57 | } |
||
| 58 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.