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

@@ -17,7 +17,7 @@ use App\Repositories\PirepFieldRepository;
use App\Repositories\PirepRepository;
use App\Repositories\SubfleetRepository;
use App\Services\FareService;
use App\Services\PIREPService;
use App\Services\PirepService;
use App\Services\UserService;
use App\Support\Units\Time;
use Flash;
@@ -50,7 +50,7 @@ class PirepController extends BaseController
* @param JournalRepository $journalRepo
* @param PirepRepository $pirepRepo
* @param PirepFieldRepository $pirepFieldRepo
* @param PIREPService $pirepSvc
* @param PirepService $pirepSvc
* @param SubfleetRepository $subfleetRepo
* @param UserService $userSvc
*/
@@ -62,7 +62,7 @@ class PirepController extends BaseController
JournalRepository $journalRepo,
PirepRepository $pirepRepo,
PirepFieldRepository $pirepFieldRepo,
PIREPService $pirepSvc,
PirepService $pirepSvc,
SubfleetRepository $subfleetRepo,
UserService $userSvc
) {

View File

@@ -28,7 +28,7 @@ use App\Repositories\JournalRepository;
use App\Repositories\PirepRepository;
use App\Services\Finance\PirepFinanceService;
use App\Services\GeoService;
use App\Services\PIREPService;
use App\Services\PirepService;
use App\Services\UserService;
use Auth;
use Illuminate\Http\Request;
@@ -51,7 +51,7 @@ class PirepController extends RestController
* @param GeoService $geoSvc
* @param JournalRepository $journalRepo
* @param PirepRepository $pirepRepo
* @param PIREPService $pirepSvc
* @param PirepService $pirepSvc
* @param UserService $userSvc
*/
public function __construct(
@@ -60,7 +60,7 @@ class PirepController extends RestController
GeoService $geoSvc,
JournalRepository $journalRepo,
PirepRepository $pirepRepo,
PIREPService $pirepSvc,
PirepService $pirepSvc,
UserService $userSvc
) {
$this->acarsRepo = $acarsRepo;

View File

@@ -17,7 +17,7 @@ use App\Repositories\PirepFieldRepository;
use App\Repositories\PirepRepository;
use App\Services\FareService;
use App\Services\GeoService;
use App\Services\PIREPService;
use App\Services\PirepService;
use App\Services\UserService;
use App\Support\Units\Time;
use Flash;
@@ -47,7 +47,7 @@ class PirepController extends Controller
* @param GeoService $geoSvc
* @param PirepRepository $pirepRepo
* @param PirepFieldRepository $pirepFieldRepo
* @param PIREPService $pirepSvc
* @param PirepService $pirepSvc
* @param UserService $userSvc
*/
public function __construct(
@@ -58,7 +58,7 @@ class PirepController extends Controller
GeoService $geoSvc,
PirepRepository $pirepRepo,
PirepFieldRepository $pirepFieldRepo,
PIREPService $pirepSvc,
PirepService $pirepSvc,
UserService $userSvc
) {
$this->aircraftRepo = $aircraftRepo;

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;

View File

@@ -12,7 +12,6 @@ use App\Models\Enums\PirepSource;
use App\Models\Enums\PirepState;
use App\Models\Navdata;
use App\Models\Pirep;
use App\Models\PirepFare;
use App\Models\PirepFieldValues;
use App\Models\User;
use App\Repositories\AcarsRepository;
@@ -23,7 +22,11 @@ use Carbon\Carbon;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Log;
class PIREPService extends BaseService
/**
* Class PirepService
* @package App\Services
*/
class PirepService extends BaseService
{
private $acarsRepo,
$flightRepo,
@@ -33,8 +36,9 @@ class PIREPService extends BaseService
$pirepRepo;
/**
* PIREPService constructor.
* PirepService constructor.
* @param AcarsRepository $acarsRepo
* @param FlightRepository $flightRepo
* @param GeoService $geoSvc
* @param NavdataRepository $navRepo
* @param PirepRepository $pirepRepo

View File

@@ -2,7 +2,7 @@
use App\Models\Enums\ExpenseType;
use App\Repositories\ExpenseRepository;
use App\Services\PIREPService;
use App\Services\PirepService;
use App\Repositories\JournalRepository;
use App\Services\FareService;
use App\Services\Finance\PirepFinanceService;
@@ -30,7 +30,7 @@ class FinanceTest extends TestCase
$this->fareSvc = app(FareService::class);
$this->financeSvc = app(PirepFinanceService::class);
$this->fleetSvc = app(FleetService::class);
$this->pirepSvc = app(PIREPService::class);
$this->pirepSvc = app(PirepService::class);
}
/**

View File

@@ -17,7 +17,7 @@ class PIREPTest extends TestCase
parent::setUp(); // TODO: Change the autogenerated stub
$this->addData('base');
$this->pirepSvc = app('App\Services\PIREPService');
$this->pirepSvc = app('App\Services\PirepService');
$this->settingsRepo = app(SettingRepository::class);
}