Add enums for the custom analytics fields
This commit is contained in:
14
app/Models/Enums/AnalyticsDimensions.php
Normal file
14
app/Models/Enums/AnalyticsDimensions.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Enums;
|
||||
|
||||
/**
|
||||
* Class AnalyticsDimensions
|
||||
* @package App\Models\Enums
|
||||
*/
|
||||
class AnalyticsDimensions
|
||||
{
|
||||
const PHP_VERSION = 1;
|
||||
const MYSQL_VERSION = 2;
|
||||
const PHPVMS_VERSION = 3;
|
||||
}
|
||||
13
app/Models/Enums/AnalyticsMetrics.php
Normal file
13
app/Models/Enums/AnalyticsMetrics.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Enums;
|
||||
|
||||
/**
|
||||
* Class AnalyticsMetrics
|
||||
* @package App\Models\Enums
|
||||
*/
|
||||
class AnalyticsMetrics
|
||||
{
|
||||
# Track the lookup time for airports from vaCentral
|
||||
const AIRPORT_LOOKUP_TIME = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user