@@ -310,11 +310,11 @@ |
||
| 310 | 310 | return $this->files; |
| 311 | 311 | } |
| 312 | 312 | |
| 313 | - /** |
|
| 314 | - * Get the cache key prefix. |
|
| 315 | - * |
|
| 316 | - * @return string |
|
| 317 | - */ |
|
| 313 | + /** |
|
| 314 | + * Get the cache key prefix. |
|
| 315 | + * |
|
| 316 | + * @return string |
|
| 317 | + */ |
|
| 318 | 318 | public function getPrefix() |
| 319 | 319 | { |
| 320 | 320 | return ''; |
@@ -148,13 +148,13 @@ |
||
| 148 | 148 | return $this->memcached->decrement($this->prefix.$key, $value = 1); |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | - /** |
|
| 152 | - * Remove a specific item from the cache store. |
|
| 153 | - * |
|
| 154 | - * @param string $key |
|
| 155 | - * |
|
| 156 | - * @return bool |
|
| 157 | - */ |
|
| 151 | + /** |
|
| 152 | + * Remove a specific item from the cache store. |
|
| 153 | + * |
|
| 154 | + * @param string $key |
|
| 155 | + * |
|
| 156 | + * @return bool |
|
| 157 | + */ |
|
| 158 | 158 | public function delete($key) |
| 159 | 159 | { |
| 160 | 160 | return $this->memcached->delete($this->prefix.$key); |
@@ -51,7 +51,9 @@ |
||
| 51 | 51 | */ |
| 52 | 52 | public function get($key) |
| 53 | 53 | { |
| 54 | - if ( ! isset($this->storage[$key])) return; |
|
| 54 | + if ( ! isset($this->storage[$key])) { |
|
| 55 | + return; |
|
| 56 | + } |
|
| 55 | 57 | |
| 56 | 58 | $item = $this->storage[$key]; |
| 57 | 59 | |
@@ -303,7 +303,7 @@ |
||
| 303 | 303 | */ |
| 304 | 304 | public function getDefaultDriver() |
| 305 | 305 | { |
| 306 | - return $this->app['config']['cache.default']; |
|
| 306 | + return $this->app['config']['cache.default']; |
|
| 307 | 307 | } |
| 308 | 308 | |
| 309 | 309 | /** |
@@ -105,7 +105,7 @@ |
||
| 105 | 105 | */ |
| 106 | 106 | public function pull($key, $default = null) |
| 107 | 107 | { |
| 108 | - return take($this->get($key, $default), function () use ($key) { |
|
| 108 | + return take($this->get($key, $default), function() use ($key) { |
|
| 109 | 109 | $this->delete($key); |
| 110 | 110 | }); |
| 111 | 111 | } |
@@ -45,8 +45,8 @@ discard block |
||
| 45 | 45 | { |
| 46 | 46 | $testTime = $this->getConvertedUTC($time, $timezone); |
| 47 | 47 | $ourTime = $this->toDateTime() |
| 48 | - ->setTimezone(new DateTimeZone('UTC')) |
|
| 49 | - ->format('Y-m-d H:i:s'); |
|
| 48 | + ->setTimezone(new DateTimeZone('UTC')) |
|
| 49 | + ->format('Y-m-d H:i:s'); |
|
| 50 | 50 | |
| 51 | 51 | return $testTime->format('Y-m-d H:i:s') === $ourTime; |
| 52 | 52 | } |
@@ -68,15 +68,15 @@ discard block |
||
| 68 | 68 | return $testTime < $ourTime; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - /** |
|
| 72 | - * Determines if the current instance's time is after test time, |
|
| 73 | - * after converting to UTC. |
|
| 74 | - * |
|
| 75 | - * @param \DateTime|string $time |
|
| 76 | - * @param \DatetimeZone|string|null $timezone |
|
| 77 | - * |
|
| 78 | - * @return bool |
|
| 79 | - */ |
|
| 71 | + /** |
|
| 72 | + * Determines if the current instance's time is after test time, |
|
| 73 | + * after converting to UTC. |
|
| 74 | + * |
|
| 75 | + * @param \DateTime|string $time |
|
| 76 | + * @param \DatetimeZone|string|null $timezone |
|
| 77 | + * |
|
| 78 | + * @return bool |
|
| 79 | + */ |
|
| 80 | 80 | public function isAfter($time, string $timezone = null) |
| 81 | 81 | { |
| 82 | 82 | $testTime = $this->getConvertedUTC($time, $timezone)->getTimestamp(); |
@@ -52,10 +52,10 @@ discard block |
||
| 52 | 52 | use Difference; |
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | - * Used to check time string to determine if it is relative time or not. |
|
| 56 | - * |
|
| 57 | - * @var string $relativePattern |
|
| 58 | - */ |
|
| 55 | + * Used to check time string to determine if it is relative time or not. |
|
| 56 | + * |
|
| 57 | + * @var string $relativePattern |
|
| 58 | + */ |
|
| 59 | 59 | protected static $relativePattern = '/this|next|last|tomorrow|yesterday|midnight|today|[+-]|first|last|ago/i'; |
| 60 | 60 | |
| 61 | 61 | /** |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | /** |
| 120 | 120 | * Returns boolean whether the passed timezone is the same as |
| 121 | - * the local timezone. |
|
| 121 | + * the local timezone. |
|
| 122 | 122 | * |
| 123 | 123 | * @return bool |
| 124 | 124 | */ |
@@ -219,13 +219,13 @@ discard block |
||
| 219 | 219 | return $this->toLocalizedFormatter('yyyy-MM-dd'); |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - /** |
|
| 223 | - * Returns a localized version of the time in nicer date format. |
|
| 224 | - * |
|
| 225 | - * i.e. 10:20:33 |
|
| 226 | - * |
|
| 227 | - * @return string |
|
| 228 | - */ |
|
| 222 | + /** |
|
| 223 | + * Returns a localized version of the time in nicer date format. |
|
| 224 | + * |
|
| 225 | + * i.e. 10:20:33 |
|
| 226 | + * |
|
| 227 | + * @return string |
|
| 228 | + */ |
|
| 229 | 229 | public function toTimeString() |
| 230 | 230 | { |
| 231 | 231 | return $this->toLocalizedFormatter('HH:mm:ss'); |
@@ -206,7 +206,9 @@ |
||
| 206 | 206 | */ |
| 207 | 207 | public static function limit($value, $limit, $end = '...') |
| 208 | 208 | { |
| 209 | - if (static::length($value) <= $limit) return $value; |
|
| 209 | + if (static::length($value) <= $limit) { |
|
| 210 | + return $value; |
|
| 211 | + } |
|
| 210 | 212 | |
| 211 | 213 | return rtrim(mb_substr($value, 0, $limit, 'UTF-8')).$end; |
| 212 | 214 | } |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | |
| 177 | 177 | if ( ! function_exists('str_underscore')) |
| 178 | 178 | { |
| 179 | - /** |
|
| 179 | + /** |
|
| 180 | 180 | * Replace in the string the spaces by low dashes. |
| 181 | 181 | * |
| 182 | 182 | * @param string $string |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | |
| 194 | 194 | if ( ! function_exists('studly_caps')) |
| 195 | 195 | { |
| 196 | - /** |
|
| 196 | + /** |
|
| 197 | 197 | * Convert the string with spaces or underscore in StudlyCaps. |
| 198 | 198 | * |
| 199 | 199 | * @param string $string |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | */ |
| 70 | 70 | function dd() |
| 71 | 71 | { |
| 72 | - array_map(function ($x) { |
|
| 72 | + array_map(function($x) { |
|
| 73 | 73 | var_dump($x); |
| 74 | 74 | }, func_get_args()); |
| 75 | 75 | |