14 lines
224 B
PHP
14 lines
224 B
PHP
<?php
|
|
|
|
namespace App\Models\Enums;
|
|
|
|
/**
|
|
* Class AnalyticsMetrics
|
|
* @package App\Models\Enums
|
|
*/
|
|
class AnalyticsMetrics
|
|
{
|
|
# Track the lookup time for airports from vaCentral
|
|
public const AIRPORT_LOOKUP_TIME = 1;
|
|
}
|