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

@@ -9,5 +9,5 @@ namespace App\Models\Enums;
class AnalyticsMetrics
{
# Track the lookup time for airports from vaCentral
const AIRPORT_LOOKUP_TIME = 1;
public const AIRPORT_LOOKUP_TIME = 1;
}