Completed
Pull Request — develop (#57)
by Tony
06:12
created
app/Http/Controllers/SettingsController.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright (C) 2016 Tony Murray <[email protected]>
4
- * This program is free software: you can redistribute it and/or modify
5
- * it under the terms of the GNU General Public License as published by
6
- * the Free Software Foundation, either version 3 of the License, or
7
- * (at your option) any later version.
8
- *
9
- * This program is distributed in the hope that it will be useful,
10
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
12
- * GNU General Public License for more details.
13
- *
14
- * You should have received a copy of the GNU General Public License
15
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
- */
3
+     * Copyright (C) 2016 Tony Murray <[email protected]>
4
+     * This program is free software: you can redistribute it and/or modify
5
+     * it under the terms of the GNU General Public License as published by
6
+     * the Free Software Foundation, either version 3 of the License, or
7
+     * (at your option) any later version.
8
+     *
9
+     * This program is distributed in the hope that it will be useful,
10
+     * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
12
+     * GNU General Public License for more details.
13
+     *
14
+     * You should have received a copy of the GNU General Public License
15
+     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
+     */
17 17
 
18 18
 namespace App\Http\Controllers;
19 19
 
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,6 @@
 block discarded – undo
17 17
 
18 18
 namespace App\Http\Controllers;
19 19
 
20
-use App\Http\Requests;
21
-use App\Models\DbConfig;
22 20
 use Illuminate\Http\Request;
23 21
 use Settings;
24 22
 
Please login to merge, or discard this patch.
app/Settings/DatabaseRepository.php 3 patches
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -32,11 +32,17 @@  discard block
 block discarded – undo
32 32
 {
33 33
     // 'config_name', 'config_value'
34 34
 
35
+    /**
36
+     * @param string $key
37
+     */
35 38
     public function has($key)
36 39
     {
37 40
         return DbConfig::exactKey($key)->exists();
38 41
     }
39 42
 
43
+    /**
44
+     * @param string $key
45
+     */
40 46
     public function get($key, $default = null)
41 47
     {
42 48
         $results = DbConfig::key($key)->get(['config_name', 'config_value']);
@@ -100,6 +106,9 @@  discard block
 block discarded – undo
100 106
         return $ret;
101 107
     }
102 108
 
109
+    /**
110
+     * @param \Illuminate\Database\Eloquent\Collection $objs
111
+     */
103 112
     private function objsToArray($objs)
104 113
     {
105 114
         $ret = array();
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 
27 27
 
28 28
 use App\Models\DbConfig;
29
-use App\Models\Notification;
30 29
 
31 30
 class DatabaseRepository
32 31
 {
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,8 +42,7 @@  discard block
 block discarded – undo
42 42
         $results = DbConfig::key($key)->get(['config_name', 'config_value']);
43 43
         if (count($results) > 1) {
44 44
             return $this->collectionToArray($results);
45
-        }
46
-        elseif (count($results) == 1) {
45
+        } elseif (count($results) == 1) {
47 46
             $entry = $results->first();
48 47
             if($entry->config_name != $key) { //FIXME: better test
49 48
                 // trim the prefix
@@ -53,8 +52,7 @@  discard block
 block discarded – undo
53 52
 
54 53
             $value = $entry->config_value;
55 54
             return is_null($value) ? $default : $value;
56
-        }
57
-        else {
55
+        } else {
58 56
             return $default;
59 57
         }
60 58
     }
Please login to merge, or discard this patch.
app/Settings/Settings.php 3 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,8 +49,7 @@  discard block
 block discarded – undo
49 49
                 $this->database->set($k, $v);
50 50
 //            Cache::put($key, $v);
51 51
             }
52
-        }
53
-        else {
52
+        } else {
54 53
             $this->database->set($key, $value);
55 54
         }
56 55
 //            Cache::put($key, $v);
@@ -68,8 +67,7 @@  discard block
 block discarded – undo
68 67
                 if (!is_null($config)) {
69 68
                     $value = array_replace_recursive($config, $value);
70 69
                 }
71
-            }
72
-            elseif (is_null($value)) {
70
+            } elseif (is_null($value)) {
73 71
                 $value = Config::get('config.' . $key);
74 72
             }
75 73
 
@@ -135,8 +133,7 @@  discard block
 block discarded – undo
135 133
             $currentPath = array_merge($path, array($key));
136 134
             if (is_array($val)) {
137 135
                 $result = array_merge($result, self::recursive_keys($val, $prefix, $currentPath));
138
-            }
139
-            else {
136
+            } else {
140 137
                 $result[$prefix . join('.', $currentPath)] = $val;
141 138
             }
142 139
         }
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 namespace App\Settings;
26 26
 
27 27
 
28
-use App\Models\DbConfig;
29 28
 use Cache;
30 29
 use Config;
31 30
 use DB;
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 use Cache;
30 30
 use Config;
31 31
 use DB;
32
-use Illuminate\Contracts\Config\Repository as ConfigContract;  // adds the possibility to replace the default Config facade
32
+use Illuminate\Contracts\Config\Repository as ConfigContract; // adds the possibility to replace the default Config facade
33 33
 
34 34
 class Settings implements ConfigContract
35 35
 {
@@ -62,18 +62,18 @@  discard block
 block discarded – undo
62 62
     public function get($key, $default = null)
63 63
     {
64 64
         // return value from cache or fetch it and return it
65
-        return Cache::remember($key, $this->cache_time, function () use ($key, $default) {
65
+        return Cache::remember($key, $this->cache_time, function() use ($key, $default) {
66 66
             $value = $this->database->get($key, $default);
67 67
 
68 68
             if (is_array($value)) {
69 69
                 $value = self::pathToArray($value, $key);
70
-                $config = Config::get('config.' . $key, $default);
70
+                $config = Config::get('config.'.$key, $default);
71 71
                 if (!is_null($config)) {
72 72
                     $value = array_replace_recursive($config, $value);
73 73
                 }
74 74
             }
75 75
             elseif (is_null($value)) {
76
-                return Config::get('config.' . $key);
76
+                return Config::get('config.'.$key);
77 77
             }
78 78
 
79 79
             return $value;
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     private static function recursive_keys(array $array, $prefix = "", array $path = array())
151 151
     {
152 152
         if ($prefix != "") {
153
-            $prefix = trim($prefix, '.') . '.';
153
+            $prefix = trim($prefix, '.').'.';
154 154
         }
155 155
         $result = array();
156 156
         foreach ($array as $key => $val) {
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                 $result = array_merge($result, self::recursive_keys($val, $prefix, $currentPath));
160 160
             }
161 161
             else {
162
-                $result[$prefix . join('.', $currentPath)] = $val;
162
+                $result[$prefix.join('.', $currentPath)] = $val;
163 163
             }
164 164
         }
165 165
         return $result;
Please login to merge, or discard this patch.
app/Models/DbConfig.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
     public function scopeKey($query, $key)
51 51
     {
52
-        return $query->where('config_name', 'LIKE', $key . '%');
52
+        return $query->where('config_name', 'LIKE', $key.'%');
53 53
     }
54 54
 
55 55
     public function scopeExactKey($query, $key)
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 16
  */
17 17
 /**
18
- * DbConfig.php
19
- *
20
- * @package    LibreNMS
21
- * @author     Tony Murray <[email protected]>
22
- * @copyright  2016 Tony Murray
23
- * @license    @license http://opensource.org/licenses/GPL-3.0 GNU Public License v3 or later
24
- */
18
+     * DbConfig.php
19
+     *
20
+     * @package    LibreNMS
21
+     * @author     Tony Murray <[email protected]>
22
+     * @copyright  2016 Tony Murray
23
+     * @license    @license http://opensource.org/licenses/GPL-3.0 GNU Public License v3 or later
24
+     */
25 25
 namespace App\Models;
26 26
 
27 27
 use Illuminate\Database\Eloquent\Model;
Please login to merge, or discard this patch.