Rename the PirepService class

This commit is contained in:
Nabeel Shahzad
2018-03-06 17:36:06 -06:00
parent a325470b8f
commit dc2570a408
7 changed files with 22 additions and 18 deletions

View File

@@ -11,7 +11,7 @@ use App\Repositories\ExpenseRepository;
use App\Repositories\JournalRepository;
use App\Services\BaseService;
use App\Services\FareService;
use App\Services\PIREPService;
use App\Services\PirepService;
use App\Support\Math;
use App\Support\Money;
use Log;
@@ -33,13 +33,13 @@ class PirepFinanceService extends BaseService
* @param ExpenseRepository $expenseRepo
* @param FareService $fareSvc
* @param JournalRepository $journalRepo
* @param PIREPService $pirepSvc
* @param PirepService $pirepSvc
*/
public function __construct(
ExpenseRepository $expenseRepo,
FareService $fareSvc,
JournalRepository $journalRepo,
PIREPService $pirepSvc
PirepService $pirepSvc
) {
$this->expenseRepo = $expenseRepo;
$this->fareSvc = $fareSvc;