Completed
Push — SF4 ( f28f6b...15ccd7 )
by Laurent
04:33
created
src/Entity/Settings/Article.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -181,9 +181,9 @@
 block discarded – undo
181 181
         $this->zoneStorages = new ArrayCollection();
182 182
         $this->active = true;
183 183
         $this->quantity = 0.000;
184
-        $this->createAt = new \DateTime() ;
185
-        $this->updateAt = new \DateTime() ;
186
-        $this->deleteAt = new \DateTime('3000-12-31') ;
184
+        $this->createAt = new \DateTime();
185
+        $this->updateAt = new \DateTime();
186
+        $this->deleteAt = new \DateTime('3000-12-31');
187 187
     }
188 188
 
189 189
     /**
Please login to merge, or discard this patch.
src/Entity/Settings/Diverse/Tva.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public function getName()
86 86
     {
87
-        return (number_format($this->getRate() * 100, 1)) . ' %';
87
+        return (number_format($this->getRate() * 100, 1)).' %';
88 88
     }
89 89
 
90 90
     /**
@@ -98,6 +98,6 @@  discard block
 block discarded – undo
98 98
      */
99 99
     public function __toString()
100 100
     {
101
-        return (string)$this->getName();
101
+        return (string) $this->getName();
102 102
     }
103 103
 }
Please login to merge, or discard this patch.