Fixed formatting of almost every file

This commit is contained in:
Nabeel Shahzad
2018-02-20 22:33:09 -06:00
parent c5b6ca53fa
commit ea09a18956
138 changed files with 600 additions and 508 deletions

View File

@@ -2,17 +2,22 @@
namespace App\Http\Controllers\Api;
use Illuminate\Http\Request;
use App\Services\GeoService;
use App\Repositories\AcarsRepository;
use App\Repositories\PirepRepository;
use App\Services\GeoService;
use Illuminate\Http\Request;
class AcarsController extends RestController
{
protected $acarsRepo, $geoSvc, $pirepRepo;
/**
* AcarsController constructor.
* @param GeoService $geoSvc
* @param AcarsRepository $acarsRepo
* @param PirepRepository $pirepRepo
*/
public function __construct(
GeoService $geoSvc,
AcarsRepository $acarsRepo,
@@ -25,6 +30,8 @@ class AcarsController extends RestController
/**
* Return all of the flights (as points) in GeoJSON format
* @param Request $request
* @return mixed
*/
public function index(Request $request)
{