@@ -32,11 +32,17 @@ discard block |
||
| 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 |
||
| 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(); |
@@ -49,7 +49,7 @@ |
||
| 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) |
@@ -29,7 +29,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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; |