| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class SchemaRebuildCommand extends Command |
||
| 17 | { |
||
| 18 | protected static $defaultName = 'cycle/schema/rebuild'; |
||
| 19 | |||
| 20 | private CycleDependencyProxy $promise; |
||
| 21 | |||
| 22 | private ?ContainerInterface $container = null; |
||
| 23 | |||
| 24 | public function __construct(CycleDependencyProxy $promise, ContainerInterface $container) |
||
| 25 | { |
||
| 26 | $this->promise = $promise; |
||
| 27 | $this->container = $container; |
||
| 28 | parent::__construct(); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function configure(): void |
||
| 35 | } |
||
| 36 | |||
| 37 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 44 | } |
||
| 45 | } |
||
| 46 |
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.