Passed
Push — master ( c907d1...2b9ac4 )
by Raffael
02:38
created
src/Ldap/Exception.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/AttributeMap.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
@@ -79,21 +79,21 @@  discard block
 block discarded – undo
79 79
 
80 80
                 switch ($value['type']) {
81 81
                     case 'array':
82
-                        $arr = (array) $data[$value['attr']];
82
+                        $arr = (array)$data[$value['attr']];
83 83
                         unset($arr['count']);
84 84
                         $attrs[$attr] = $arr;
85 85
 
86 86
                     break;
87 87
                     case 'string':
88
-                         $attrs[$attr] = (string) $store;
88
+                         $attrs[$attr] = (string)$store;
89 89
 
90 90
                     break;
91 91
                     case 'int':
92
-                         $attrs[$attr] = (int) $store;
92
+                         $attrs[$attr] = (int)$store;
93 93
 
94 94
                     break;
95 95
                     case 'bool':
96
-                         $attrs[$attr] = (bool) $store;
96
+                         $attrs[$attr] = (bool)$store;
97 97
 
98 98
                     break;
99 99
                     default:
Please login to merge, or discard this patch.
src/Auth.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             switch ($option) {
81 81
                 case 'identity_class':
82 82
                 case 'attribute_map_class':
83
-                    $this->{$option} = (string) $value;
83
+                    $this->{$option} = (string)$value;
84 84
 
85 85
                 break;
86 86
                 case 'adapter':
Please login to merge, or discard this patch.
src/Ldap.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
@@ -177,11 +177,11 @@  discard block
 block discarded – undo
177 177
                 case 'binddn':
178 178
                 case 'bindpw':
179 179
                 case 'basedn':
180
-                    $this->{$option} = (string) $value;
180
+                    $this->{$option} = (string)$value;
181 181
 
182 182
                     break;
183 183
                 case 'tls':
184
-                    $this->tls = (bool) $value;
184
+                    $this->tls = (bool)$value;
185 185
 
186 186
                     break;
187 187
                 default:
Please login to merge, or discard this patch.
src/IdentityInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/Identity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/AttributeMapInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/Adapter/Oidc.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                 case 'provider_url':
87 87
                 case 'token_validation_url':
88 88
                 case 'identity_attribute':
89
-                    $this->{$option} = (string) $value;
89
+                    $this->{$option} = (string)$value;
90 90
                     unset($config[$option]);
91 91
 
92 92
                 break;
Please login to merge, or discard this patch.
src/Adapter/AdapterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Micro
Please login to merge, or discard this patch.