Set access modifier on all enums (php 7.1)

This commit is contained in:
Nabeel Shahzad
2018-02-10 14:06:25 -06:00
parent e6290c3396
commit 7a527f2ed3
13 changed files with 55 additions and 56 deletions

View File

@@ -8,9 +8,9 @@ namespace App\Models\Enums;
*/
class AircraftState extends EnumBase
{
const PARKED = 0;
const IN_USE = 1;
const IN_AIR = 2;
public const PARKED = 0;
public const IN_USE = 1;
public const IN_AIR = 2;
public static $labels = [
AircraftState::PARKED => 'On Ground',