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