Passed
Pull Request — master (#49)
by
unknown
08:13
created
src/Output/QRMarkup.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 * @see \sprintf()
28 28
 	 */
29 29
 	protected string $svgHeader = '<svg xmlns="http://www.w3.org/2000/svg" class="qr-svg %1$s" '.
30
-	                              'style="width: 100%%; height: auto;" viewBox="0 0 %2$d %2$d">';
30
+								  'style="width: 100%%; height: auto;" viewBox="0 0 %2$d %2$d">';
31 31
 
32 32
 	/**
33 33
 	 * @inheritDoc
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 
76 76
 		if($file !== null){
77 77
 			return '<!DOCTYPE html>'.
78
-			       '<head><meta charset="UTF-8"><title>QR Code</title></head>'.
79
-			       '<body>'.$this->options->eol.$html.'</body>';
78
+				   '<head><meta charset="UTF-8"><title>QR Code</title></head>'.
79
+				   '<body>'.$this->options->eol.$html.'</body>';
80 80
 		}
81 81
 
82 82
 		return $html;
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
 		$matrix = $this->matrix->matrix();
92 92
 
93 93
 		$svg = sprintf($this->svgHeader, $this->options->cssClass, $this->options->svgViewBoxSize ?? $this->moduleCount)
94
-		       .$this->options->eol
95
-		       .'<defs>'.$this->options->svgDefs.'</defs>'
96
-		       .$this->options->eol;
94
+			   .$this->options->eol
95
+			   .'<defs>'.$this->options->svgDefs.'</defs>'
96
+			   .$this->options->eol;
97 97
 
98 98
 		foreach($this->moduleValues as $M_TYPE => $value){
99 99
 			$path = '';
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 		// if saving to file, append the correct headers
148 148
 		if($file !== null){
149 149
 			return '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">'.
150
-			       $this->options->eol.$svg;
150
+				   $this->options->eol.$svg;
151 151
 		}
152 152
 
153 153
 		return $svg;
Please login to merge, or discard this patch.
src/Output/QRFpdf.php 1 patch
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -15,66 +15,66 @@
 block discarded – undo
15 15
  */
16 16
 class QRFpdf extends QROutputAbstract
17 17
 {
18
-    public function __construct(SettingsContainerInterface $options, QRMatrix $matrix)
19
-    {
20
-        parent::__construct($options, $matrix);
18
+	public function __construct(SettingsContainerInterface $options, QRMatrix $matrix)
19
+	{
20
+		parent::__construct($options, $matrix);
21 21
 
22
-        if (!\class_exists(\FPDF::class)) {
23
-            throw new \BadMethodCallException(
24
-                'The QRFpdf output requires FPDF as dependency but the class "\FPDF" couldn\'t be found.'
25
-            );
26
-        }
27
-    }
22
+		if (!\class_exists(\FPDF::class)) {
23
+			throw new \BadMethodCallException(
24
+				'The QRFpdf output requires FPDF as dependency but the class "\FPDF" couldn\'t be found.'
25
+			);
26
+		}
27
+	}
28 28
 
29
-    /**
30
-     * @inheritDoc
31
-     */
32
-    protected function setModuleValues(): void
33
-    {
34
-        foreach ($this::DEFAULT_MODULE_VALUES as $M_TYPE => $defaultValue) {
35
-            $v = $this->options->moduleValues[$M_TYPE] ?? null;
29
+	/**
30
+	 * @inheritDoc
31
+	 */
32
+	protected function setModuleValues(): void
33
+	{
34
+		foreach ($this::DEFAULT_MODULE_VALUES as $M_TYPE => $defaultValue) {
35
+			$v = $this->options->moduleValues[$M_TYPE] ?? null;
36 36
 
37
-            if (!\is_array($v) || \count($v) < 3) {
38
-                $this->moduleValues[$M_TYPE] = $defaultValue
39
-                    ? [0, 0, 0]
40
-                    : [255, 255, 255];
41
-            } else {
42
-                $this->moduleValues[$M_TYPE] = \array_values($v);
43
-            }
44
-        }
45
-    }
37
+			if (!\is_array($v) || \count($v) < 3) {
38
+				$this->moduleValues[$M_TYPE] = $defaultValue
39
+					? [0, 0, 0]
40
+					: [255, 255, 255];
41
+			} else {
42
+				$this->moduleValues[$M_TYPE] = \array_values($v);
43
+			}
44
+		}
45
+	}
46 46
 
47
-    /**
48
-     * @inheritDoc
49
-     */
50
-    public function dump(string $file = null): string
51
-    {
52
-        $file ??= $this->options->cachefile;
47
+	/**
48
+	 * @inheritDoc
49
+	 */
50
+	public function dump(string $file = null): string
51
+	{
52
+		$file ??= $this->options->cachefile;
53 53
 
54
-        $fpdf = new \FPDF('P', 'pt', [$this->length, $this->length]);
55
-        $fpdf->AddPage();
54
+		$fpdf = new \FPDF('P', 'pt', [$this->length, $this->length]);
55
+		$fpdf->AddPage();
56 56
 
57
-        $prevColor = null;
58
-        foreach ($this->matrix->matrix() as $y => $row) {
59
-            foreach ($row as $x => $M_TYPE) {
60
-                /**
61
-                 * @var int $M_TYPE
62
-                 */
63
-                $color = $this->moduleValues[$M_TYPE];
64
-                if ($prevColor === null || $prevColor !== $color) {
65
-                    $fpdf->SetFillColor(...$color);
66
-                    $prevColor = $color;
67
-                }
68
-                $fpdf->Rect($x * $this->scale, $y * $this->scale, 1 * $this->scale, 1 * $this->scale, 'F');
69
-            }
70
-        }
57
+		$prevColor = null;
58
+		foreach ($this->matrix->matrix() as $y => $row) {
59
+			foreach ($row as $x => $M_TYPE) {
60
+				/**
61
+				 * @var int $M_TYPE
62
+				 */
63
+				$color = $this->moduleValues[$M_TYPE];
64
+				if ($prevColor === null || $prevColor !== $color) {
65
+					$fpdf->SetFillColor(...$color);
66
+					$prevColor = $color;
67
+				}
68
+				$fpdf->Rect($x * $this->scale, $y * $this->scale, 1 * $this->scale, 1 * $this->scale, 'F');
69
+			}
70
+		}
71 71
 
72
-        $pdfData = $fpdf->Output('S');
72
+		$pdfData = $fpdf->Output('S');
73 73
 
74
-        if ($file !== null) {
75
-            $this->saveToFile($pdfData, $file);
76
-        }
74
+		if ($file !== null) {
75
+			$this->saveToFile($pdfData, $file);
76
+		}
77 77
 
78
-        return $pdfData;
79
-    }
78
+		return $pdfData;
79
+	}
80 80
 }
Please login to merge, or discard this patch.