We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 13 | class MenuCrudController extends CrudController |
||
| 14 | { |
||
| 15 | use \Backpack\CRUD\app\Http\Controllers\Operations\ListOperation; |
||
| 16 | use \Backpack\CRUD\app\Http\Controllers\Operations\CreateOperation; |
||
| 17 | use \Backpack\CRUD\app\Http\Controllers\Operations\UpdateOperation; |
||
| 18 | use \Backpack\CRUD\app\Http\Controllers\Operations\DeleteOperation; |
||
| 19 | use \Backpack\CRUD\app\Http\Controllers\Operations\ShowOperation; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Configure the CrudPanel object. Apply settings to all operations. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | public function setup() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Define what happens when the List operation is loaded. |
||
| 35 | * |
||
| 36 | * @see https://backpackforlaravel.com/docs/crud-operation-list-entries |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | protected function setupListOperation() |
||
| 49 | |||
| 50 | protected function setupShowOperation() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Define what happens when the Create operation is loaded. |
||
| 58 | * |
||
| 59 | * @see https://backpackforlaravel.com/docs/crud-operation-create |
||
| 60 | * @return void |
||
| 61 | */ |
||
| 62 | protected function setupCreateOperation() |
||
| 74 | |||
| 75 | /** |
||
| 76 | * Define what happens when the Update operation is loaded. |
||
| 77 | * |
||
| 78 | * @see https://backpackforlaravel.com/docs/crud-operation-update |
||
| 79 | * @return void |
||
| 80 | */ |
||
| 81 | protected function setupUpdateOperation() |
||
| 85 | |||
| 86 | private function setupColumns($isShowing = false) |
||
| 102 | |||
| 103 | private function setupFields() |
||
| 119 | } |
||
| 120 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.