Completed
Push — master ( 2933de...ffcf9e )
by Odiseo
03:31
created
src/Model/Vendor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@
 block discarded – undo
222 222
     {
223 223
         $this->logoFile = $file;
224 224
 
225
-        if($file)
225
+        if ($file)
226 226
         {
227 227
             $this->setUpdatedAt(new \DateTime());
228 228
         }
Please login to merge, or discard this patch.
src/Model/VendorsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function addVendor(VendorInterface $vendor)
32 32
     {
33
-        if(!$this->vendors->contains($vendor)) {
33
+        if (!$this->vendors->contains($vendor)) {
34 34
             $this->vendors->add($vendor);
35 35
         }
36 36
     }
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function removeVendor(VendorInterface $vendor)
42 42
     {
43
-        if($this->vendors->contains($vendor)) {
43
+        if ($this->vendors->contains($vendor)) {
44 44
             $this->vendors->removeElement($vendor);
45 45
         }
46 46
     }
Please login to merge, or discard this patch.