digitalbiblesociety/dbp

View on GitHub
app/Transformers/Factbook/TransportationTransformer.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Transformers\Factbook;

use App\Models\Country\FactBook\CountryReligion;
use League\Fractal\TransformerAbstract;

class TransportationTransformer extends TransformerAbstract
{
    /**
     * A Fractal transformer.
     *
     * @return array
     */
    public function transform($country_transportation)
    {
        return $country_transportation;
    }
}