Completed
Push — 0.7.0 ( 7b3d84 )
by Alexander
15s queued 14s
created
src/components/Cache/Store/ArrayStore.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,9 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/components/Cache/CacheManager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -303,7 +303,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/components/Cache/CacheRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/components/Support/Chronos/Traits/Comparison.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/components/Support/Chronos/Traits/Date.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -52,10 +52,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/components/Support/Str.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,9 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/components/Support/helpers.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
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
             
Please login to merge, or discard this patch.
src/components/Support/Flowing.php 1 patch
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -173,53 +173,53 @@
 block discarded – undo
173 173
     }
174 174
 
175 175
     /**
176
-	 * Magic method. Searches for the given variable and returns its value.
177
-	 *
178
-	 * @param  string  $key  Variable name
179
-	 *
180
-	 * @return mixed
181
-	 */
182
-	public function __get($key) 
183
-	{
184
-		return $this->get($key);
185
-	}
186
-
187
-	/**
188
-	 * Magic method. Calls [$this->set] with the same parameters.
189
-	 *
190
-	 * @param  string  $key    Variable name
191
-	 * @param  mixed   $value  Value
192
-	 *
193
-	 * @return void
194
-	 */
195
-	public function __set($key, $value) 
196
-	{
197
-		$this->offsetSet($key, $value);
198
-	}
199
-
200
-	/**
201
-	 * Magic method. Determines if a variable is set.
202
-	 *
203
-	 * @param  string  $key  variable name
204
-	 *
205
-	 * @return boolean
206
-	 */
207
-	public function __isset($key) 
208
-	{
209
-		return $this->offsetExists($key);
210
-	}
211
-
212
-	/**
213
-	 * Magic method. Unsets a given variable.
214
-	 *
215
-	 * @param  string  $key  Variable name
216
-	 *
217
-	 * @return void
218
-	 */
219
-	public function __unset($key) 
220
-	{
221
-		$this->offsetUnset($$key);
222
-	}
176
+     * Magic method. Searches for the given variable and returns its value.
177
+     *
178
+     * @param  string  $key  Variable name
179
+     *
180
+     * @return mixed
181
+     */
182
+    public function __get($key) 
183
+    {
184
+        return $this->get($key);
185
+    }
186
+
187
+    /**
188
+     * Magic method. Calls [$this->set] with the same parameters.
189
+     *
190
+     * @param  string  $key    Variable name
191
+     * @param  mixed   $value  Value
192
+     *
193
+     * @return void
194
+     */
195
+    public function __set($key, $value) 
196
+    {
197
+        $this->offsetSet($key, $value);
198
+    }
199
+
200
+    /**
201
+     * Magic method. Determines if a variable is set.
202
+     *
203
+     * @param  string  $key  variable name
204
+     *
205
+     * @return boolean
206
+     */
207
+    public function __isset($key) 
208
+    {
209
+        return $this->offsetExists($key);
210
+    }
211
+
212
+    /**
213
+     * Magic method. Unsets a given variable.
214
+     *
215
+     * @param  string  $key  Variable name
216
+     *
217
+     * @return void
218
+     */
219
+    public function __unset($key) 
220
+    {
221
+        $this->offsetUnset($$key);
222
+    }
223 223
 
224 224
     /**
225 225
      * Handle dynamic calls to the container to set attributes.
Please login to merge, or discard this patch.
src/components/Redis/RedisServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,13 +39,13 @@
 block discarded – undo
39 39
      */
40 40
     public function register()
41 41
     {
42
-        $this->app->singleton('redis', function ($app) {
42
+        $this->app->singleton('redis', function($app) {
43 43
             $config = $app['config']->get('database.redis', []);
44 44
 
45 45
             return new RedisManager($config);
46 46
         });
47 47
 
48
-        $this->app->bind('redis.connection', function ($app) {
48
+        $this->app->bind('redis.connection', function($app) {
49 49
             return $app['redis']->connection();
50 50
         });
51 51
     }
Please login to merge, or discard this patch.