Passed
Push — master ( b35614...49fb5f )
by Marcin
07:22
created
src/mrcnpdlk/Teryt/Client.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  *
14 14
  */
15 15
 
16
-declare (strict_types=1);
16
+declare(strict_types=1);
17 17
 
18 18
 namespace mrcnpdlk\Teryt;
19 19
 
@@ -163,12 +163,12 @@  discard block
 block discarded – undo
163 163
             if (!array_key_exists('DataStanu', $args) && $addDate) {
164 164
                 $args['DataStanu'] = (new \DateTime())->format('Y-m-d');
165 165
             }
166
-            $self    = $this;
166
+            $self = $this;
167 167
             $this->oLogger->debug(sprintf('REQ: %s', $method), $args);
168 168
 
169 169
 
170 170
             $resp = $this->oCacheAdapter->useCache(
171
-                function () use ($self, $method, $args) {
171
+                function() use ($self, $method, $args) {
172 172
                     $res       = $self->getSoap()->__soapCall($method, [$args]);
173 173
                     $resultKey = $method . 'Result';
174 174
                     if (!property_exists($res, $resultKey)) {
Please login to merge, or discard this patch.