2017-06-10 14:50:00 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
|
|
|
use App\Repositories\AircraftRepository;
|
|
|
|
|
|
|
|
|
2017-06-11 07:27:19 +08:00
|
|
|
class PIREPService extends BaseService {
|
2017-06-10 14:50:00 +08:00
|
|
|
|
|
|
|
protected $aircraft;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return a PIREP model
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
AircraftRepository $aircraft
|
|
|
|
) {
|
|
|
|
$this->aircraft = $aircraft;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function create() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|