Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| MapBoxStylesEnum | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace App\Enum; |
| 6 | |
| 7 | enum MapBoxStylesEnum: string |
| 8 | { |
| 9 | use ForSelectTrait; |
| 10 | |
| 11 | case Standard = 'mapbox/standard'; |
| 12 | case Standard_Clear = 'nikp3h/clvm8zx18043s01ph1xmu05dd'; |
| 13 | case Streets = 'mapbox/streets-v12'; |
| 14 | case Outdoors = 'mapbox/outdoors-v12'; |
| 15 | case Light = 'mapbox/light-v11'; |
| 16 | case Dark = 'mapbox/dark-v11'; |
| 17 | case Satellite = 'mapbox/satellite-v9'; |
| 18 | case Satellite_Streets = 'mapbox/satellite-streets-v12'; |
| 19 | case Navigation_Day = 'mapbox/navigation-day-v1'; |
| 20 | case Navigation_Night = 'mapbox/navigation-night-v1'; |
| 21 | } |