Failed Conditions
Pull Request — master (#229)
by
unknown
02:57
created
src/View/AddressBookView.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
 namespace Sylius\ShopApiPlugin\View;
6 6
 
Please login to merge, or discard this patch.
src/Handler/CreateAddressHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
         $address->setPostcode($command->postcode());
81 81
         $address->setPhoneNumber($command->phoneNumber());
82 82
 
83
-        if($command->provinceCode()) {
83
+        if ($command->provinceCode()) {
84 84
             $province = $this->getProvince($command->provinceCode());
85 85
             $this->assertProvinceExists($province);
86 86
             $address->setProvinceCode($province->getCode());
Please login to merge, or discard this patch.