phpvms/app/Services/PIREPService.php

25 lines
349 B
PHP

<?php
namespace App\Services;
use App\Repositories\AircraftRepository;
class PIREPService extends BaseService {
protected $aircraft;
/**
* return a PIREP model
*/
public function __construct(
AircraftRepository $aircraft
) {
$this->aircraft = $aircraft;
}
public function create() {
}
}