init
This commit is contained in:
37
app/DataSourceFields.php
Normal file
37
app/DataSourceFields.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
class DataSourceFields
|
||||
{
|
||||
public const DVLA = [
|
||||
'registrationNumber',
|
||||
'artEndDate',
|
||||
'co2Emissions',
|
||||
'colour',
|
||||
'engineCapacity',
|
||||
'fuelType',
|
||||
'make',
|
||||
'markedForExport',
|
||||
'monthOfFirstRegistration',
|
||||
'motStatus',
|
||||
'revenueWeight',
|
||||
'taxDueDate',
|
||||
'taxStatus',
|
||||
'typeApproval',
|
||||
'wheelplan',
|
||||
'yearOfManufacture',
|
||||
'euroStatus',
|
||||
'realDrivingEmissions',
|
||||
'dateOfLastV5CIssued',
|
||||
];
|
||||
|
||||
public const API2 = [];
|
||||
|
||||
public const API3 = [];
|
||||
|
||||
public static function all(): array
|
||||
{
|
||||
return array_merge(self::DVLA, self::API2, self::API3);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user