1 | <?php |
||
14 | class APIUserEventsController extends Controller |
||
15 | { |
||
16 | /** |
||
17 | * Show list of events. |
||
18 | * |
||
19 | * @return \Illuminate\Database\Eloquent\Collection|static[] |
||
20 | */ |
||
21 | public function index() |
||
25 | |||
26 | /** |
||
27 | * Store event for logged user. |
||
28 | * |
||
29 | * @return \Illuminate\Database\Eloquent\Collection|static[] |
||
30 | */ |
||
31 | public function store(UserStoreEvent $request) |
||
37 | |||
38 | } |
||
39 |
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.