| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class AdministrativeStructureController extends ApiController |
||
| 11 | { |
||
| 12 | |||
| 13 | public static function getFederations() |
||
| 14 | { |
||
| 15 | return Federation::orderBy('id', 'asc')->get(['id as value', 'name as text'])->toArray(); |
||
| 16 | } |
||
| 17 | |||
| 18 | |||
| 19 | public static function getAssociations($federationId) |
||
| 22 | |||
| 23 | } |
||
| 24 | |||
| 25 | public static function getClubs($federationId, $associationId) |
||
| 29 | } |
||
| 30 | |||
| 32 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.