Rename Interfaces to Contracts to better match Laravel conventions
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Support\Units;
|
||||
|
||||
use App\Interfaces\Unit;
|
||||
use App\Contracts\Unit;
|
||||
use PhpUnitsOfMeasure\PhysicalQuantity\Length;
|
||||
|
||||
class Altitude extends Unit
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Support\Units;
|
||||
|
||||
use App\Interfaces\Unit;
|
||||
use App\Contracts\Unit;
|
||||
use PhpUnitsOfMeasure\PhysicalQuantity\Length;
|
||||
|
||||
class Distance extends Unit
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Support\Units;
|
||||
|
||||
use App\Interfaces\Unit;
|
||||
use App\Contracts\Unit;
|
||||
use PhpUnitsOfMeasure\PhysicalQuantity\Mass;
|
||||
|
||||
class Fuel extends Unit
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Support\Units;
|
||||
|
||||
use App\Interfaces\Unit;
|
||||
use App\Contracts\Unit;
|
||||
use PhpUnitsOfMeasure\PhysicalQuantity\Mass as MassUnit;
|
||||
|
||||
class Mass extends Unit
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Support\Units;
|
||||
|
||||
use App\Interfaces\Unit;
|
||||
use App\Contracts\Unit;
|
||||
use PhpUnitsOfMeasure\PhysicalQuantity\Pressure as PressureUnit;
|
||||
|
||||
/**
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Support\Units;
|
||||
|
||||
use App\Interfaces\Unit;
|
||||
use App\Contracts\Unit;
|
||||
use PhpUnitsOfMeasure\PhysicalQuantity\Temperature as TemperatureUnit;
|
||||
|
||||
/**
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Support\Units;
|
||||
|
||||
use App\Interfaces\Unit;
|
||||
use App\Contracts\Unit;
|
||||
use PhpUnitsOfMeasure\PhysicalQuantity\Velocity as VelocityUnit;
|
||||
|
||||
/**
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Support\Units;
|
||||
|
||||
use App\Interfaces\Unit;
|
||||
use App\Contracts\Unit;
|
||||
use PhpUnitsOfMeasure\PhysicalQuantity\Volume as VolumeUnit;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user