Completed
Push — master ( 61569d...e55815 )
by Raffael
01:45
created
src/Http/Router.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@
 block discarded – undo
58 58
      * @param   array $request
59 59
      * @return  void
60 60
      */
61
-    public function __construct(Logger $logger, ?array $request=null)
61
+    public function __construct(Logger $logger, ? array $request = null)
62 62
     {
63 63
         $this->logger = $logger;
64 64
 
65
-        if($request === null) {
65
+        if ($request === null) {
66 66
             $request = $_SERVER;
67 67
         }        
68 68
 
Please login to merge, or discard this patch.
src/Auth/Adapter/AdapterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      * @param   Iterable $config
23 23
      * @return  void
24 24
      */
25
-    public function __construct(Logger $logger, ? Iterable $config=null);
25
+    public function __construct(Logger $logger, ? Iterable $config = null);
26 26
 
27 27
 
28 28
     /**
Please login to merge, or discard this patch.
src/Auth/Adapter/AbstractAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      * @param   Iterable $config
56 56
      * @return  void
57 57
      */
58
-    public function __construct(Logger $logger, ?Iterable $config=null)
58
+    public function __construct(Logger $logger, ?Iterable $config = null)
59 59
     {
60 60
         $this->logger = $logger;
61 61
         $this->setOptions($config);
Please login to merge, or discard this patch.