Rename Interfaces to Contracts to better match Laravel conventions

This commit is contained in:
Nabeel Shahzad
2019-07-15 15:44:31 -04:00
parent 31f16d693b
commit a720f12e0b
223 changed files with 241 additions and 241 deletions

View File

@@ -2,7 +2,7 @@
namespace App\Widgets;
use App\Interfaces\Widget;
use App\Contracts\Widget;
use App\Support\Metar;
/**
@@ -22,7 +22,7 @@ class Weather extends Widget
public function run()
{
/**
* @var \App\Interfaces\Metar
* @var \App\Contracts\Metar
*/
$klass = config('phpvms.metar');
$metar_class = new $klass();