| Total Complexity | 5 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class SeatMapController extends Controller |
||
| 14 | { |
||
| 15 | public function index() |
||
| 16 | { |
||
| 17 | return view('admin.dependencies.index', [ |
||
| 18 | 'seatmaps' => SeatMap::all(), |
||
| 19 | 'locations' => Location::all(), |
||
| 20 | 'pricecategories' => PriceCategory::all(), |
||
| 21 | 'pricelists' => PriceList::all() |
||
| 22 | ]); |
||
| 23 | } |
||
| 24 | |||
| 25 | public function create(CreateUpdateSeatMap $request) |
||
|
|
|||
| 26 | { |
||
| 27 | |||
| 28 | } |
||
| 29 | |||
| 30 | public function get(SeatMap $seatMap) |
||
| 31 | { |
||
| 32 | return view('admin.dependencies.manage-seatmap', ['seatmap' => $seatMap]); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function update(SeatMap $seatMap, CreateUpdateSeatMap $request) |
||
| 37 | |||
| 38 | } |
||
| 39 | |||
| 40 | public function delete(SeatMap $seatMap) |
||
| 50 | } |
||
| 51 | } |
||
| 52 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.