Passed
Push — master ( ab3f5d...01e1f2 )
by Jan
02:56
created
src/Entity/Orderdetail.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,6 @@
 block discarded – undo
248 248
      * Set the supplier ID
249 249
      *
250 250
      * @param integer $new_supplier_id       the ID of the new supplier
251
-
252 251
      */
253 252
     public function setSupplierId(int $new_supplier_id) : self
254 253
     {
Please login to merge, or discard this patch.
src/Entity/Company.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,6 @@
 block discarded – undo
191 191
      * @param string $new_email_address       the new e-mail address
192 192
      *
193 193
      * @return self
194
-
195 194
      */
196 195
     public function setEmailAddress(string $new_email_address) : self
197 196
     {
Please login to merge, or discard this patch.
src/Twig/AppExtension.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,9 @@
 block discarded – undo
75 75
 
76 76
     public function parseBBCode(string $bbcode) : string
77 77
     {
78
-        if($bbcode === '') return '';
78
+        if($bbcode === '') {
79
+         return '';
80
+        }
79 81
 
80 82
         $item = $this->cache->getItem('bbcode_' . md5($bbcode));
81 83
         if(!$item->isHit()) {
Please login to merge, or discard this patch.