Completed
Pull Request — develop (#57)
by Tony
06:12
created
app/Settings/Settings.php 2 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.
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/Settings/DatabaseRepository.php 1 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/Models/DbConfig.php 1 patch
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.