| Total Complexity | 2 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class CountriesController extends Controller |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Lists all countries with the total of spots available for each one |
||
| 12 | * |
||
| 13 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
| 14 | */ |
||
| 15 | public function index() |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Show a list of all the spots for a specific country |
||
| 31 | * |
||
| 32 | * @param $countrySlug |
||
| 33 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
| 34 | */ |
||
| 35 | public function show(String $countrySlug) |
||
| 49 |