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

@@ -10,7 +10,7 @@ use App\Models\Enums\AircraftStatus;
use App\Models\Expense;
use App\Models\Subfleet;
use App\Repositories\AircraftRepository;
use App\Services\ImporterService;
use App\Services\ImportService;
use Flash;
use Illuminate\Http\Request;
use Log;
@@ -29,11 +29,11 @@ class AircraftController extends Controller
/**
* AircraftController constructor.
* @param AircraftRepository $aircraftRepo
* @param ImporterService $importSvc
* @param ImportService $importSvc
*/
public function __construct(
AircraftRepository $aircraftRepo,
ImporterService $importSvc
ImportService $importSvc
) {
$this->aircraftRepo = $aircraftRepo;
$this->importSvc = $importSvc;