Passed
Push — master ( fcefb5...9291e6 )
by Jhao
02:07
created
src/Tracking/PacketAccessClient.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -41,10 +41,10 @@  discard block
 block discarded – undo
41 41
         'soap_version' => SOAP_1_1,
42 42
         'trace'        => 1,
43 43
         'classmap'     => [
44
-            'item'                   => Packet\Event::class,     // Item согласно wsdl-описанию называется item
45
-            'file'                   => Packet\Value::class,     // value согласно wsdl-описанию называется file
46
-            'error'                  => Packet\Error::class,     // корневая ошибка
47
-            'Error'                  => Packet\Error::class,     // ошибка конкретного трека
44
+            'item'                   => Packet\Event::class, // Item согласно wsdl-описанию называется item
45
+            'file'                   => Packet\Value::class, // value согласно wsdl-описанию называется file
46
+            'error'                  => Packet\Error::class, // корневая ошибка
47
+            'Error'                  => Packet\Error::class, // ошибка конкретного трека
48 48
             'operation'              => Packet\Operation::class, // Operation согласно wsdl-описанию называется operation
49 49
             'ticketResponse'         => TicketResponse::class,
50 50
             'answerByTicketResponse' => TrackingResponse::class,
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
     public function getClient(): \SoapClient
122 122
     {
123
-        if (! $this->client) {
123
+        if (!$this->client) {
124 124
             $this->client = new \SoapClient(self::WSDL_URL, $this->options);
125 125
         }
126 126
 
Please login to merge, or discard this patch.
src/Tracking/Packet/TrackingResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Appwilio\RussianPostSDK\Tracking\Packet;
15 15
 
Please login to merge, or discard this patch.
src/Tracking/Packet/Event.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Appwilio\RussianPostSDK\Tracking\Packet;
15 15
 
Please login to merge, or discard this patch.
src/Tracking/Packet/TicketResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Appwilio\RussianPostSDK\Tracking\Packet;
15 15
 
Please login to merge, or discard this patch.
src/Tracking/Packet/Value.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Appwilio\RussianPostSDK\Tracking\Packet;
15 15
 
Please login to merge, or discard this patch.
src/Tracking/SingleAccessClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
 
123 123
     protected function getClient(): \SoapClient
124 124
     {
125
-        if (! $this->client) {
125
+        if (!$this->client) {
126 126
             $this->client = new \SoapClient(self::WSDL_URL, $this->options);
127 127
         }
128 128
 
Please login to merge, or discard this patch.