40 lines
761 B
PHP
40 lines
761 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services\ImportExport;
|
||
|
|
||
|
use App\Interfaces\ImportExport;
|
||
|
use App\Models\Fare;
|
||
|
|
||
|
/**
|
||
|
* The flight importer can be imported or export. Operates on rows
|
||
|
*
|
||
|
* @package App\Services\Import
|
||
|
*/
|
||
|
class FareExporter extends ImportExport
|
||
|
{
|
||
|
public $assetType = 'fare';
|
||
|
|
||
|
/**
|
||
|
* Set the current columns and other setup
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
self::$columns = FareImporter::$columns;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Import a flight, parse out the different rows
|
||
|
* @param Fare $fare
|
||
|
* @return array
|
||
|
*/
|
||
|
public function export(Fare $fare): array
|
||
|
{
|
||
|
$ret = [];
|
||
|
foreach(self::$columns as $column) {
|
||
|
$ret[$column] = $fare->{$column};
|
||
|
}
|
||
|
|
||
|
return $ret;
|
||
|
}
|
||
|
}
|