Fixed formatting of almost every file
This commit is contained in:
@@ -1,14 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by IntelliJ IDEA.
|
||||
* User: nshahzad
|
||||
* Date: 12/19/17
|
||||
* Time: 8:13 PM
|
||||
*/
|
||||
|
||||
namespace App\Models\Enums;
|
||||
|
||||
|
||||
class PirepSource extends EnumBase
|
||||
{
|
||||
public const MANUAL = 0;
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
namespace App\Models\Enums;
|
||||
|
||||
|
||||
class PirepState extends EnumBase {
|
||||
|
||||
public const REJECTED = -1;
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
|
||||
namespace App\Models\Enums;
|
||||
|
||||
|
||||
/**
|
||||
* Tied to the ACARS statuses/states
|
||||
* Class PirepStatus
|
||||
|
||||
@@ -4,7 +4,6 @@ namespace App\Models;
|
||||
|
||||
/**
|
||||
* Class Fare
|
||||
*
|
||||
* @package App\Models
|
||||
*/
|
||||
class Fare extends BaseModel
|
||||
|
||||
@@ -2,13 +2,12 @@
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Models\Traits\HashId;
|
||||
use App\Support\Units\Distance;
|
||||
use App\Support\Units\Time;
|
||||
use PhpUnitsOfMeasure\Exception\NonNumericValue;
|
||||
use PhpUnitsOfMeasure\Exception\NonStringUnitName;
|
||||
|
||||
use App\Models\Traits\HashId;
|
||||
|
||||
class Flight extends BaseModel
|
||||
{
|
||||
use HashId;
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use \GeoJson\Geometry\Point;
|
||||
use \GeoJson\Geometry\LineString;
|
||||
use \GeoJson\Feature\Feature;
|
||||
use \GeoJson\Feature\FeatureCollection;
|
||||
use GeoJson\Feature\Feature;
|
||||
use GeoJson\Feature\FeatureCollection;
|
||||
use GeoJson\Geometry\LineString;
|
||||
use GeoJson\Geometry\Point;
|
||||
|
||||
/**
|
||||
* Return different points/features in GeoJSON format
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
|
||||
namespace App\Models\Migrations;
|
||||
|
||||
use DB;
|
||||
use App\Models\Setting;
|
||||
use DB;
|
||||
use Illuminate\Database\Migrations\Migration as MigrationBase;
|
||||
|
||||
class Migration extends MigrationBase
|
||||
|
||||
@@ -6,7 +6,6 @@ use App\Models\Enums\AcarsType;
|
||||
use App\Models\Enums\PirepState;
|
||||
use App\Models\Traits\HashId;
|
||||
use App\Support\Units\Distance;
|
||||
|
||||
use App\Support\Units\Fuel;
|
||||
use PhpUnitsOfMeasure\Exception\NonNumericValue;
|
||||
use PhpUnitsOfMeasure\Exception\NonStringUnitName;
|
||||
|
||||
@@ -4,7 +4,6 @@ namespace App\Models\Traits;
|
||||
|
||||
use Hashids\Hashids;
|
||||
|
||||
|
||||
trait HashId
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -3,11 +3,9 @@
|
||||
namespace App\Models;
|
||||
|
||||
use App\Models\Enums\PirepState;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
use Laratrust\Traits\LaratrustUserTrait;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
use Illuminate\Contracts\Auth\CanResetPassword;
|
||||
|
||||
/**
|
||||
* @property integer $id
|
||||
|
||||
Reference in New Issue
Block a user