1 | <?php namespace JobApis\JobsToMail\Http\Controllers; |
||
11 | class UsersController extends BaseController |
||
12 | { |
||
13 | use DispatchesJobs, ValidatesRequests; |
||
14 | |||
15 | /** |
||
16 | * Create new User. |
||
17 | */ |
||
18 | public function create(CreateUser $request) |
||
28 | |||
29 | /** |
||
30 | * Delete a user account (unsubscribe from all searches) |
||
31 | */ |
||
32 | public function delete(Request $request, $userId) |
||
40 | } |
||
41 |
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.