@@ -37,7 +37,7 @@ |
||
| 37 | 37 | */ |
| 38 | 38 | public function map(Router $router) |
| 39 | 39 | { |
| 40 | - $router->group(['namespace' => $this->namespace], function ($router) { |
|
| 40 | + $router->group(['namespace' => $this->namespace], function($router) { |
|
| 41 | 41 | require app_path('Http/routes.php'); |
| 42 | 42 | }); |
| 43 | 43 | } |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | } |
| 68 | 68 | else { |
| 69 | 69 | $user = User::find($request->user()->user_id); |
| 70 | - $device = $user->devices()->find($id); |
|
| 70 | + $device = $user->devices()->find($id); |
|
| 71 | 71 | } |
| 72 | 72 | // morph the data as required |
| 73 | 73 | if ($request->query('displayFormat') == 'link') { |
@@ -6,7 +6,6 @@ |
||
| 6 | 6 | use App\User; |
| 7 | 7 | use App\Port; |
| 8 | 8 | use App\Api\Transformers\PortTransformer; |
| 9 | - |
|
| 10 | 9 | use Illuminate\Http\Request; |
| 11 | 10 | use Dingo\Api\Routing\Helpers; |
| 12 | 11 | use Illuminate\Support\Facades\Input; |
@@ -5,7 +5,6 @@ |
||
| 5 | 5 | use Illuminate\Contracts\Auth\Guard; |
| 6 | 6 | use Dingo\Api\Http; |
| 7 | 7 | use Dingo\Api\Routing\Helpers; |
| 8 | -use Illuminate\Http\Request; |
|
| 9 | 8 | |
| 10 | 9 | class SetViewVariable |
| 11 | 10 | { |
@@ -41,11 +41,11 @@ |
||
| 41 | 41 | |
| 42 | 42 | public function scopeLimit($query) |
| 43 | 43 | { |
| 44 | - return $query->select('notifications.*','key'); |
|
| 44 | + return $query->select('notifications.*', 'key'); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | public function users() { |
| 48 | - return $this->belongsToMany('App\User')->withPivot('notifications_id','user_id'); |
|
| 48 | + return $this->belongsToMany('App\User')->withPivot('notifications_id', 'user_id'); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | } |
@@ -5,7 +5,6 @@ |
||
| 5 | 5 | use Dingo\Api\Http; |
| 6 | 6 | use Dingo\Api\Routing\Helpers; |
| 7 | 7 | use App\Notification; |
| 8 | -use App\NotificationAttrib; |
|
| 9 | 8 | use Illuminate\Http\Request; |
| 10 | 9 | |
| 11 | 10 | class NotificationController extends Controller |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | |
| 39 | 39 | $notification = Notification::find($id); |
| 40 | 40 | $enable = strpos($action, 'un') === false; |
| 41 | - if(!$enable) { |
|
| 41 | + if (!$enable) { |
|
| 42 | 42 | $action = substr($action, 2); |
| 43 | 43 | } |
| 44 | 44 | |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $stats['ports'] = \App\Port::all()->count(); |
| 36 | 36 | $stats['syslog'] = \App\Syslog::all()->count(); |
| 37 | 37 | $stats['eventlog'] = \App\Eventlog::all()->count(); |
| 38 | - $stats['apps'] = DB::table('applications')->count();; |
|
| 38 | + $stats['apps'] = DB::table('applications')->count(); ; |
|
| 39 | 39 | $stats['services'] = DB::table('services')->count(); |
| 40 | 40 | $stats['storage'] = DB::table('storage')->count(); |
| 41 | 41 | $stats['diskio'] = DB::table('ucd_diskio')->count(); |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | */ |
| 79 | 79 | public function logo() { |
| 80 | 80 | $os = DeviceOS::load($this); |
| 81 | - if( isset($os->icon) ){ |
|
| 81 | + if (isset($os->icon)) { |
|
| 82 | 82 | return asset('images/os/'.$os->icon.'.png'); |
| 83 | 83 | } |
| 84 | 84 | return asset('images/os/generic.png'); |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | 'ifXmcbc' => true, |
| 11 | 11 | 'ifname' => true, |
| 12 | 12 | ); |
| 13 | - protected $overlib = array( |
|
| 13 | + protected $overlib = array( |
|
| 14 | 14 | array( |
| 15 | 15 | 'graph' => 'device_processor', |
| 16 | 16 | 'text' => 'Processor Usage' |