Files
phpvms/app/Services/PIREPService.php
2017-06-10 01:50:00 -05:00

25 lines
329 B
PHP

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