Passed
Push — master ( 209be3...e0f8f4 )
by Sebastian
02:29 queued 13s
created
src/Rendering/Date/DateTime.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -133,8 +133,8 @@
 block discarded – undo
133 133
     public function renderNumeric()
134 134
     {
135 135
         $ret  = $this->year;
136
-        $ret .= $this->month > 0 && $this->month < 13 ? "-".sprintf("%02s", $this->month) : "";
137
-        $ret .= $this->day > 0 && $this->day < 32 ? "-".sprintf("%02s", $this->day) : "";
136
+        $ret .= $this->month > 0 && $this->month < 13 ? "-" . sprintf("%02s", $this->month) : "";
137
+        $ret .= $this->day > 0 && $this->day < 32 ? "-" . sprintf("%02s", $this->day) : "";
138 138
         return $ret;
139 139
     }
140 140
 }
Please login to merge, or discard this patch.