Completed
Push — master ( 9fa223...767962 )
by smiley
02:51
created
src/Output/QRMarkup.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,9 +74,9 @@
 block discarded – undo
74 74
 		$matrix = $this->matrix->matrix();
75 75
 
76 76
 		$svg = '<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="'.$length.'px" height="'.$length.'px">'
77
-		       .$this->options->eol
78
-		       .'<defs>'.$this->options->svgDefs.'</defs>'
79
-		       .$this->options->eol;
77
+			   .$this->options->eol
78
+			   .'<defs>'.$this->options->svgDefs.'</defs>'
79
+			   .$this->options->eol;
80 80
 
81 81
 		foreach($this->options->moduleValues as $M_TYPE => $value){
82 82
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 
109 109
 					if($count > 0){
110 110
 						$len = $count * $scale;
111
-						$path .= 'M' .$start. ' ' .($y * $scale). ' h'.$len.' v'.$scale.' h-'.$len.'Z ';
111
+						$path .= 'M'.$start.' '.($y * $scale).' h'.$len.' v'.$scale.' h-'.$len.'Z ';
112 112
 
113 113
 						// reset count
114 114
 						$count = 0;
Please login to merge, or discard this patch.