Apply fixes from StyleCI

This commit is contained in:
Nabeel Shahzad
2018-08-26 16:40:04 +00:00
committed by StyleCI Bot
parent 20f46adbc4
commit 9596d88b48
407 changed files with 4032 additions and 3286 deletions

View File

@@ -6,15 +6,14 @@ use App\Interfaces\Widget;
/**
* Show the live map in a view
* @package App\Widgets
*/
class AirspaceMap extends Widget
{
protected $config = [
'height' => '800px',
'width' => '100%',
'lat' => 0,
'lon' => 0,
'lat' => 0,
'lon' => 0,
];
/**
@@ -23,7 +22,7 @@ class AirspaceMap extends Widget
public function run()
{
return view('widgets.airspace_map', [
'config' => $this->config,
'config' => $this->config,
]);
}
}