GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — master (#184)
by Evgenij
02:15
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                     ->scalarNode('base_url')
79 79
                         ->defaultValue(null)
80 80
                         ->validate()
81
-                            ->ifTrue(function ($v) {
81
+                            ->ifTrue(function($v) {
82 82
                                 return !is_string($v);
83 83
                             })
84 84
                             ->thenInvalid('base_url can be: string')
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                     ->end()
87 87
                     ->arrayNode('options')
88 88
                         ->validate()
89
-                            ->ifTrue(function ($options) {
89
+                            ->ifTrue(function($options) {
90 90
                                 return count($options['form_params']) && count($options['multipart']);
91 91
                             })
92 92
                             ->thenInvalid('You cannot use form_params and multipart at the same time.')
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
                             ->end()
100 100
                             ->variableNode('allow_redirects')
101 101
                                 ->validate()
102
-                                    ->ifTrue(function ($v) {
102
+                                    ->ifTrue(function($v) {
103 103
                                         return !is_array($v) && !is_bool($v);
104 104
                                     })
105 105
                                     ->thenInvalid('allow_redirects can be: bool or array')
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                             ->end()
108 108
                             ->variableNode('auth')
109 109
                                 ->validate()
110
-                                    ->ifTrue(function ($v) {
110
+                                    ->ifTrue(function($v) {
111 111
                                         return !is_array($v) && !is_string($v);
112 112
                                     })
113 113
                                     ->thenInvalid('auth can be: string or array')
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
                             ->end()
116 116
                             ->variableNode('query')
117 117
                                 ->validate()
118
-                                    ->ifTrue(function ($v) {
118
+                                    ->ifTrue(function($v) {
119 119
                                         return !is_string($v) && !is_array($v);
120 120
                                     })
121 121
                                     ->thenInvalid('query can be: string or array')
@@ -124,16 +124,16 @@  discard block
 block discarded – undo
124 124
                             ->arrayNode('curl')
125 125
                                 ->beforeNormalization()
126 126
                                     ->ifArray()
127
-                                        ->then(function (array $curlOptions) {
127
+                                        ->then(function(array $curlOptions) {
128 128
                                             $result = [];
129 129
 
130 130
                                             foreach ($curlOptions as $key => $value) {
131
-                                                $optionName = 'CURLOPT_' . strtoupper($key);
131
+                                                $optionName = 'CURLOPT_'.strtoupper($key);
132 132
 
133 133
                                                 if (!defined($optionName)) {
134 134
                                                     throw new InvalidConfigurationException(sprintf(
135
-                                                        'Invalid curl option in eight_points_guzzle: %s. ' .
136
-                                                        'Ex: use sslversion for CURLOPT_SSLVERSION option. ' . PHP_EOL .
135
+                                                        'Invalid curl option in eight_points_guzzle: %s. '.
136
+                                                        'Ex: use sslversion for CURLOPT_SSLVERSION option. '.PHP_EOL.
137 137
                                                         'See all available options: http://php.net/manual/en/function.curl-setopt.php',
138 138
                                                         $key
139 139
                                                     ));
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
                             ->end()
151 151
                             ->variableNode('cert')
152 152
                                 ->validate()
153
-                                    ->ifTrue(function ($v) {
153
+                                    ->ifTrue(function($v) {
154 154
                                         return !is_string($v) && (!is_array($v) || count($v) !== 2);
155 155
                                     })
156 156
                                     ->thenInvalid('cert can be: string or array with two entries (path and password)')
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                                 ->example('%env(float:CONNECT_TIMEOUT)%')
161 161
                                 ->beforeNormalization()
162 162
                                     ->ifString()
163
-                                    ->then(function (string $v) {
163
+                                    ->then(function(string $v) {
164 164
                                         return is_numeric($v) ? (float) $v : $v;
165 165
                                     })
166 166
                                 ->end()
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
                             ->booleanNode('debug')->end()
169 169
                             ->variableNode('decode_content')
170 170
                                 ->validate()
171
-                                    ->ifTrue(function ($v) {
171
+                                    ->ifTrue(function($v) {
172 172
                                         return !is_string($v) && !is_bool($v);
173 173
                                     })
174 174
                                     ->thenInvalid('decode_content can be: bool or string (gzip, compress, deflate, etc...)')
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
                             ->end()
186 186
                             ->scalarNode('sink')
187 187
                                 ->validate()
188
-                                    ->ifTrue(function ($v) {
188
+                                    ->ifTrue(function($v) {
189 189
                                         return !is_string($v);
190 190
                                     })
191 191
                                     ->thenInvalid('sink can be: string')
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
                             ->booleanNode('http_errors')->end()
195 195
                             ->variableNode('expect')
196 196
                                 ->validate()
197
-                                    ->ifTrue(function ($v) {
197
+                                    ->ifTrue(function($v) {
198 198
                                         return !is_bool($v) && !is_int($v);
199 199
                                     })
200 200
                                     ->thenInvalid('expect can be: bool or int')
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
                             ->end()
203 203
                             ->variableNode('ssl_key')
204 204
                                 ->validate()
205
-                                    ->ifTrue(function ($v) {
205
+                                    ->ifTrue(function($v) {
206 206
                                         return !is_string($v) && (!is_array($v) || count($v) !== 2);
207 207
                                     })
208 208
                                     ->thenInvalid('ssl_key can be: string or array with two entries (path and password)')
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
                                 ->example('%env(float:READ_TIMEOUT)%')
215 215
                                 ->beforeNormalization()
216 216
                                     ->ifString()
217
-                                    ->then(function (string $v) {
217
+                                    ->then(function(string $v) {
218 218
                                         return is_numeric($v) ? (float) $v : $v;
219 219
                                     })
220 220
                                 ->end()
@@ -223,14 +223,14 @@  discard block
 block discarded – undo
223 223
                                 ->example('%env(float:TIMEOUT)%')
224 224
                                 ->beforeNormalization()
225 225
                                     ->ifString()
226
-                                    ->then(function (string $v) {
226
+                                    ->then(function(string $v) {
227 227
                                         return is_numeric($v) ? (float) $v : $v;
228 228
                                     })
229 229
                                 ->end()
230 230
                             ->end()
231 231
                             ->variableNode('verify')
232 232
                                 ->validate()
233
-                                    ->ifTrue(function ($v) {
233
+                                    ->ifTrue(function($v) {
234 234
                                         return !is_bool($v) && !is_string($v);
235 235
                                     })
236 236
                                     ->thenInvalid('verify can be: bool or string')
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
                             ->end()
261 261
                             ->scalarNode('version')
262 262
                                 ->validate()
263
-                                    ->ifTrue(function ($v) {
263
+                                    ->ifTrue(function($v) {
264 264
                                         return !is_string($v) && !is_float($v);
265 265
                                     })
266 266
                                     ->thenInvalid('version can be: string or float')
Please login to merge, or discard this patch.