Passed
Pull Request — master (#1)
by Rafal
03:30
created

console.php (1 issue)

Labels
Severity
1
<?php
2
declare(strict_types=1);
3
4
5
use Xervice\Core\Business\Model\Locator\Locator;
6
7
require __DIR__ . '/autoload.php';
8
9
Locator::getInstance()->console()->facade()->runApplication();
0 ignored issues
show
The method facade() does not exist on Xervice\Core\Business\Mo...y\LocatorProxyInterface. It seems like you code against a sub-type of said class. However, the method does not exist in Xervice\Core\Business\Mo...xy\AbstractLocatorProxy or Xervice\Core\Business\Mo...PersistenceLocatorProxy. Are you sure you never get one of those? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

9
Locator::getInstance()->console()->/** @scrutinizer ignore-call */ facade()->runApplication();
Loading history...