webshelf /
framework
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 2 | |||
| 3 | use Illuminate\Support\Facades\Route; |
||
| 4 | |||
| 5 | /* |
||
| 6 | |-------------------------------------------------------------------------- |
||
| 7 | | Elfinder routes. |
||
| 8 | |-------------------------------------------------------------------------- |
||
| 9 | | |
||
| 10 | | Define the routes for the elfinder connectivity. |
||
| 11 | | |
||
| 12 | */ |
||
| 13 | Route::get('elfinder')->uses('Barryvdh\Elfinder\ElfinderController@showIndex')->name('elfinder')->middleware('auth'); |
||
|
0 ignored issues
–
show
|
|||
| 14 | Route::any('elfinder/connector')->uses('Barryvdh\Elfinder\ElfinderController@showConnector')->name('elfinder.connector')->middleware('auth'); |
||
| 15 | |||
| 16 | Route::get('elfinder/tinymce', 'Barryvdh\Elfinder\ElfinderController@showTinyMCE4')->middleware('auth'); |
||
| 17 | Route::get('elfinder/popup/{input_id}', 'Barryvdh\Elfinder\ElfinderController@showPopup')->middleware('auth'); |
||
| 18 |
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.