Rename import/export, fix tests with parser

This commit is contained in:
Nabeel Shahzad
2018-03-21 19:12:36 -05:00
parent 276b93fc57
commit 9657e8bd40
9 changed files with 28 additions and 26 deletions

View File

@@ -9,7 +9,7 @@ use App\Models\Airport;
use App\Models\Expense;
use App\Repositories\AirportRepository;
use App\Repositories\Criteria\WhereCriteria;
use App\Services\ImporterService;
use App\Services\ImportService;
use Flash;
use Illuminate\Http\Request;
use Jackiedo\Timezonelist\Facades\Timezonelist;
@@ -28,11 +28,11 @@ class AirportController extends Controller
/**
* @param AirportRepository $airportRepo
* @param ImporterService $importSvc
* @param ImportService $importSvc
*/
public function __construct(
AirportRepository $airportRepo,
ImporterService $importSvc
ImportService $importSvc
) {
$this->airportRepo = $airportRepo;
$this->importSvc = $importSvc;