phpvms/app/Services/PIREPService.php

25 lines
349 B
PHP
Raw Normal View History

2017-06-10 14:50:00 +08:00
<?php
namespace App\Services;
use App\Repositories\AircraftRepository;
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() {
}
}