2018-01-19 11:32:50 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models\Enums;
|
|
|
|
|
2018-03-19 10:24:41 +08:00
|
|
|
use App\Interfaces\Enum;
|
|
|
|
|
2018-01-19 11:32:50 +08:00
|
|
|
/**
|
|
|
|
* Class AnalyticsDimensions
|
|
|
|
* @package App\Models\Enums
|
|
|
|
*/
|
2018-03-19 10:24:41 +08:00
|
|
|
class AnalyticsDimensions extends Enum
|
2018-01-19 11:32:50 +08:00
|
|
|
{
|
2018-03-20 09:50:40 +08:00
|
|
|
public const PHP_VERSION = 1;
|
2018-02-11 04:06:25 +08:00
|
|
|
public const DATABASE_VERSION = 2;
|
2018-03-20 09:50:40 +08:00
|
|
|
public const PHPVMS_VERSION = 3;
|
2018-01-19 11:32:50 +08:00
|
|
|
}
|