Completed
Push — master ( 84750e...bb7498 )
by Marcin
02:41
created
src/mrcnpdlk/Teryt/Client.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  *
12 12
  */
13 13
 
14
-declare (strict_types=1);
14
+declare (strict_types = 1);
15 15
 
16 16
 namespace mrcnpdlk\Teryt;
17 17
 
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
             $this->oLogger->debug($method, $args);
210 210
 
211 211
             return $this->useCache(
212
-                function () use ($self, $method, $args) {
212
+                function() use ($self, $method, $args) {
213 213
                     $res       = $self->getSoap()->__soapCall($method, [$args]);
214 214
                     $resultKey = $method . 'Result';
215 215
                     if (!property_exists($res, $resultKey)) {
Please login to merge, or discard this patch.
src/mrcnpdlk/Teryt/Model/Terc.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,8 +84,8 @@
 block discarded – undo
84 84
     public function setIds(string $provinceId, string $districtId, string $communeId, string $communeTypeId)
85 85
     {
86 86
         $this->provinceId = str_pad($provinceId, 2, '0', \STR_PAD_LEFT);
87
-        $this->districtId = str_pad($districtId, 2, '0', \STR_PAD_LEFT);;
88
-        $this->communeId = str_pad($communeId, 2, '0', \STR_PAD_LEFT);;
87
+        $this->districtId = str_pad($districtId, 2, '0', \STR_PAD_LEFT); ;
88
+        $this->communeId = str_pad($communeId, 2, '0', \STR_PAD_LEFT); ;
89 89
         $this->communeTypeId = $communeTypeId;
90 90
         $this->tercId        = intval(sprintf('%s%s%s%s',
91 91
             $this->provinceId,
Please login to merge, or discard this patch.