aedb1f22b6
* Don't allow cancels from certain states * Unused imports * Don't reset the state doubly * Move SetUserActive into listener; code cleanup * Unused imports * Add missing files into htaccess * Move Command contract to correct folder
15 lines
248 B
PHP
15 lines
248 B
PHP
<?php
|
|
|
|
namespace App\Models\Enums;
|
|
|
|
use App\Contracts\Enum;
|
|
|
|
/**
|
|
* Metrics IDs used in Google Analytics
|
|
*/
|
|
class AnalyticsMetrics extends Enum
|
|
{
|
|
// Track the lookup time for airports from vaCentral
|
|
public const AIRPORT_LOOKUP_TIME = 1;
|
|
}
|