1 | <?php |
||
2 | /** |
||
3 | * This file is part of the O2System PHP Framework package. |
||
4 | * |
||
5 | * For the full copyright and license information, please view the LICENSE |
||
6 | * file that was distributed with this source code. |
||
7 | * |
||
8 | * @author Steeve Andrian Salim |
||
9 | * @copyright Copyright (c) Steeve Andrian Salim |
||
10 | */ |
||
11 | |||
12 | // ------------------------------------------------------------------------ |
||
13 | |||
14 | namespace O2System\Reactor\Http; |
||
15 | |||
16 | // ------------------------------------------------------------------------ |
||
17 | |||
18 | use O2System\Kernel\Http; |
||
19 | |||
20 | /** |
||
21 | * Class Router |
||
22 | * @package O2System\Reactor\Http |
||
23 | */ |
||
24 | class Router extends Http\Router |
||
25 | { |
||
26 | public function handle(Http\Message\Uri $uri = null) |
||
27 | { |
||
28 | // Load app addresses config |
||
29 | $this->addresses = config()->loadFile('addresses', true); |
||
0 ignored issues
–
show
|
|||
30 | |||
31 | return parent::handle($uri); |
||
32 | } |
||
33 | } |
||
34 |
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.