Completed
Push — master ( 7d9761...77615c )
by Tony
02:53
created
app/DataTables/Scopes/DeviceGroup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function apply($query)
23 23
     {
24
-        return $query->whereHas('groups', function ($q) {
24
+        return $query->whereHas('groups', function($q) {
25 25
             $q->where('id', '=', $this->group_id);
26 26
         });
27 27
     }
Please login to merge, or discard this patch.
app/Settings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     public function get($key, $default = null, $is_array = false)
103 103
     {
104 104
         // return value from cache or fetch it and return it
105
-        return Cache::tags(self::$cache_tag)->remember($key, $this->cache_time, function () use ($key, $default, $is_array) {
105
+        return Cache::tags(self::$cache_tag)->remember($key, $this->cache_time, function() use ($key, $default, $is_array) {
106 106
             // fetch the values from storage
107 107
             if (Config::has('config.'.$key)) {
108 108
                 $config_data = Config::get('config.'.$key, $default);
Please login to merge, or discard this patch.
app/Http/Controllers/DeviceController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,8 +79,8 @@
 block discarded – undo
79 79
 
80 80
         $page_setup['navbar'] = [
81 81
             'Overview' => $device_url,
82
-            'Graphs'   => $device_url . '/graphs',
83
-            'Health'   => $device_url . '/health',
82
+            'Graphs'   => $device_url.'/graphs',
83
+            'Health'   => $device_url.'/health',
84 84
         ];
85 85
         return view('devices.show', compact(['device', 'page_setup', 'request', 'page']));
86 86
     }
Please login to merge, or discard this patch.
app/Providers/SettingsServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     public function register()
48 48
     {
49
-        \App::bind('settings', function () {
49
+        \App::bind('settings', function() {
50 50
             return new \App\Settings;
51 51
         });
52 52
     }
Please login to merge, or discard this patch.
app/Providers/ValidationServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         // match the current password for the supplied user id
42 42
         Validator::extend(
43 43
             'password',
44
-            function ($attribute, $value, $parameters, $validator) {
44
+            function($attribute, $value, $parameters, $validator) {
45 45
                 return Auth::validate([
46 46
                     'user_id'  => $parameters[0],
47 47
                     'password' => $value,
Please login to merge, or discard this patch.
app/Models/Device.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
     {
151 151
         parent::boot();
152 152
 
153
-        static::deleting(function (Device $device) {
153
+        static::deleting(function(Device $device) {
154 154
             // delete related data
155 155
             $device->ports()->delete();
156 156
             $device->syslogs()->delete();
Please login to merge, or discard this patch.
app/QueryBuilderFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         }
63 63
 
64 64
         // return the table filter merged with $filter, fetch from cache if available
65
-        return array_merge($filter, Cache::rememberForever('query_builder_table_filter', function () {
65
+        return array_merge($filter, Cache::rememberForever('query_builder_table_filter', function() {
66 66
             $tableFilter = [];
67 67
             $schema = DB::getDoctrineSchemaManager();
68 68
 
Please login to merge, or discard this patch.
app/Data/RRDXport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
         } elseif ($format == 'csv') {
66 66
             return $this->csvSerialize();
67 67
         }
68
-        return null;  // shouldn't get here
68
+        return null; // shouldn't get here
69 69
     }
70 70
 
71 71
     /**
Please login to merge, or discard this patch.
app/DataTables/General/SyslogDataTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     {
40 40
         return $this->datatables
41 41
             ->eloquent($this->query())
42
-            ->editColumn('device.hostname', function ($syslog) {
42
+            ->editColumn('device.hostname', function($syslog) {
43 43
                 $hostname = is_null($syslog->device) ? trans('devices.text.deleted') : $syslog->device->hostname;
44 44
                 return '<a href="'.url("devices/".$syslog->device_id).'">'.$hostname.'</a>';
45 45
             })
Please login to merge, or discard this patch.