16 lines
284 B
PHP
16 lines
284 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class FacilitatedType extends NameValue
|
|
{
|
|
const HUB = 'hub';
|
|
const NON_HUB = 'non-hub';
|
|
const ANNEX = 'annex';
|
|
|
|
const COLLECTION = [
|
|
'hub' => 'Hub',
|
|
'non-hub' => 'Non-Hub',
|
|
'annex' => 'Annex',
|
|
];
|
|
}
|