Test Failed
Push — master ( 3f892b...ca4849 )
by Curtis
03:14 queued 02:42
created
src/Parser/Chan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             $parser->forward();
56 56
         }
57 57
 
58
-        $date = $chan->getYear() .'-'. $chan->getMonth() .'-'. $chan->getDay();
58
+        $date = $chan->getYear().'-'.$chan->getMonth().'-'.$chan->getDay();
59 59
         $chan->setDatetime($date);
60 60
 
61 61
         return $chan;
Please login to merge, or discard this patch.
src/Parser/Indi.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
             }
47 47
 
48 48
             if ($recordType == 'BURI') {
49
-                $a='';
49
+                $a = '';
50 50
             }
51 51
 
52 52
             switch ($recordType) {
Please login to merge, or discard this patch.
src/Record/Deat.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     public function setDate($date) {
42 42
         $this->date = $date;
43 43
         if ($this->getDay()) {
44
-            $this->dateFormatted = $this->getYear() .'-'. $this->getMonth() .'-'. substr("0{$this->getDay()}", -2);
44
+            $this->dateFormatted = $this->getYear().'-'.$this->getMonth().'-'.substr("0{$this->getDay()}", -2);
45 45
         }
46 46
         else {
47 47
             $this->year = $date;
Please login to merge, or discard this patch.
src/Record/Chan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     
112 112
     public function setDatetime($date = '')
113 113
     {
114
-        $this->datetime = $date .' '. $this->time;
114
+        $this->datetime = $date.' '.$this->time;
115 115
         
116 116
         return $this;
117 117
     }
Please login to merge, or discard this patch.
src/Record/Buri.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function setDate($date) {
40 40
         $this->date = $date;
41 41
         if ($this->getDay()) {
42
-            $this->dateFormatted = $this->getYear() .'-'. $this->getMonth() .'-'. substr("0{$this->getDay()}", -2);
42
+            $this->dateFormatted = $this->getYear().'-'.$this->getMonth().'-'.substr("0{$this->getDay()}", -2);
43 43
         }
44 44
         else {
45 45
             $this->dateFormatted = null;
Please login to merge, or discard this patch.
src/Record/Birt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function setDate($date) {
40 40
         $this->date = $date;
41 41
         if ($this->getDay()) {
42
-            $this->dateFormatted = $this->getYear() .'-'. $this->getMonth() .'-'. substr("0{$this->getDay()}", -2);
42
+            $this->dateFormatted = $this->getYear().'-'.$this->getMonth().'-'.substr("0{$this->getDay()}", -2);
43 43
         }
44 44
         else {
45 45
             $this->year = $date;
Please login to merge, or discard this patch.