| 1 | <?php |
||
| 6 | class Application extends BaseApplication |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var string |
||
| 10 | */ |
||
| 11 | protected $basePath; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Instantiate a new Darya application. |
||
| 15 | * |
||
| 16 | * @param string $basePath [optional] |
||
| 17 | * @param array $services [optional] |
||
| 18 | */ |
||
| 19 | public function __construct($basePath = null, array $services = array()) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Retrieve and optionally set the base path of the application. |
||
| 28 | * |
||
| 29 | * @param string $basePath [optional] |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function basePath($basePath = null) |
||
| 41 | } |
||
| 42 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.