| 1 | <?php |
||
| 9 | class NotificationController extends Controller |
||
| 10 | { |
||
| 11 | use Helpers; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Constructor |
||
| 15 | */ |
||
| 16 | public function __construct() { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Display a listing of the resource. |
||
| 22 | * |
||
| 23 | * @return \Illuminate\Http\Response |
||
| 24 | */ |
||
| 25 | public function index($type = null) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Update a notifications status. |
||
| 46 | * |
||
| 47 | * @return \Illuminate\Http\Response |
||
| 48 | */ |
||
| 49 | public function update($id, $action) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Create a new notification |
||
| 57 | * |
||
| 58 | * @return \Illuminate\Http\Response |
||
| 59 | */ |
||
| 60 | public function create(Request $request) |
||
| 68 | |||
| 69 | } |
||
| 70 |
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.