| 1 | <?php |
||
| 11 | class NotificationController extends Controller |
||
| 12 | { |
||
| 13 | |||
| 14 | use Helpers; |
||
| 15 | |||
| 16 | public function __construct() { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Display a listing of all notifications |
||
| 21 | * |
||
| 22 | * @return \Illuminate\Http\Response |
||
| 23 | */ |
||
| 24 | public function index(Request $request, $type = null) |
||
| 35 | |||
| 36 | public function update(Request $request, $id, $action) |
||
| 59 | |||
| 60 | } |
||
| 61 |
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.