Passed
Push — master ( d3a849...092323 )
by Glegrith
02:40 queued 12s
created
app/framework/Component/Validation/Validation.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@
 block discarded – undo
39 39
     private $validators = [];
40 40
 
41 41
     /**
42
-    * @param mixed        $data
43
-    * @param string|array $validators
44
-    * @param bool|true    $throw
45
-    *
46
-    * @return bool
47
-    */
42
+     * @param mixed        $data
43
+     * @param string|array $validators
44
+     * @param bool|true    $throw
45
+     *
46
+     * @return bool
47
+     */
48 48
     public function validate($data, $validators, $throw = true)
49 49
     {
50 50
         $validators = $this->getValidators($validators);
Please login to merge, or discard this patch.
app/framework/Component/Console/Command/ListCommand.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
 class ListCommand extends Command
19 19
 {
20 20
     /**
21
-    * {@inheritdoc}
22
-    */
21
+     * {@inheritdoc}
22
+     */
23 23
     protected function configure()
24 24
     {
25 25
         $this
Please login to merge, or discard this patch.
app/framework/Component/Console/Output/Output.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
     private $formatter;
23 23
 
24 24
     /**
25
-    * @param int                           $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
26
-    * @param bool                          $decorated Whether to decorate messages
27
-    * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)
25
+     * @param int                           $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
26
+     * @param bool                          $decorated Whether to decorate messages
27
+     * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)
28 28
      */
29 29
     public function __construct(int $verbosity = self::VERBOSITY_NORMAL, bool $decorated = false, OutputFormatterInterface $formatter = null)
30 30
     {
Please login to merge, or discard this patch.
app/framework/Component/Routing/Router.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -739,12 +739,12 @@
 block discarded – undo
739 739
 
740 740
                 // Older versions of PCRE require the 'P' in (?P<named>)
741 741
                 $pattern = '(?:'
742
-                         . ($pre !== '' ? $pre : null)
743
-                         . '('
744
-                         . ($param !== '' ? "?P<$param>" : null)
745
-                         . $type
746
-                         . '))'
747
-                         . ($optional !== '' ? '?' : null);
742
+                            . ($pre !== '' ? $pre : null)
743
+                            . '('
744
+                            . ($param !== '' ? "?P<$param>" : null)
745
+                            . $type
746
+                            . '))'
747
+                            . ($optional !== '' ? '?' : null);
748 748
 
749 749
                 return $pattern;
750 750
             },
Please login to merge, or discard this patch.
app/custom/Http/Controller/Auth/AuthController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
  */
14 14
 class AuthController
15 15
 {
16
-   use AuthenticatesAndRegistersUsers;
16
+    use AuthenticatesAndRegistersUsers;
17 17
 
18 18
     /**
19 19
      * Where to redirect users after login / registration.
Please login to merge, or discard this patch.
app/framework/Component/Storage/StorageTrait.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -6,36 +6,36 @@
 block discarded – undo
6 6
  * @Author Marco Bier <[email protected]>
7 7
  */
8 8
 
9
- namespace app\framework\Component\Storage;
9
+    namespace app\framework\Component\Storage;
10 10
 
11
- use app\framework\Component\Storage\Directory\Directory;
12
- use app\framework\Component\Storage\File\File;
11
+    use app\framework\Component\Storage\Directory\Directory;
12
+    use app\framework\Component\Storage\File\File;
13 13
 
14
- /**
15
-  * A library of Storage functions
16
-  *
17
-  * @package app\framework\Component\Storage
18
-  */
19
- trait StorageTrait
20
- {
21
-     /**
22
-      * Get storage
23
-      *
24
-      * @param $storageName
25
-      * @return Storage
26
-      */
27
-     protected static function storage($storageName)
28
-     {
29
-         return new Storage($storageName);
30
-     }
14
+    /**
15
+     * A library of Storage functions
16
+     *
17
+     * @package app\framework\Component\Storage
18
+     */
19
+    trait StorageTrait
20
+    {
21
+        /**
22
+         * Get storage
23
+         *
24
+         * @param $storageName
25
+         * @return Storage
26
+         */
27
+        protected static function storage($storageName)
28
+        {
29
+            return new Storage($storageName);
30
+        }
31 31
 
32
-     protected function file($key, $storageName)
33
-     {
34
-         return new File($key, self::storage($storageName));
35
-     }
32
+        protected function file($key, $storageName)
33
+        {
34
+            return new File($key, self::storage($storageName));
35
+        }
36 36
 
37
-     protected function directory($key, $storageName, $recursive = false, $filter = null)
38
-     {
39
-         return new Directory($key, self::storage($storageName), $recursive, $filter);
40
-     }
41
- }
37
+        protected function directory($key, $storageName, $recursive = false, $filter = null)
38
+        {
39
+            return new Directory($key, self::storage($storageName), $recursive, $filter);
40
+        }
41
+    }
Please login to merge, or discard this patch.