1 | <?php |
||
11 | class BaseController extends Controller |
||
12 | { |
||
13 | /** @var Serializer */ |
||
14 | protected $serializer; |
||
15 | |||
16 | 4 | public function __construct(ServerRequestInterface $request) |
|
23 | |||
24 | /** |
||
25 | * @param $object |
||
26 | * @param int $statusCode |
||
27 | */ |
||
28 | public function sendJsonObjectResponse($object, $statusCode = 200) |
||
42 | |||
43 | protected function httpMethodCheck($method) |
||
53 | } |
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.