Passed
Pull Request — master (#49)
by
unknown
08:13
created
src/Output/QRFpdf.php 3 patches
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.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     {
20 20
         parent::__construct($options, $matrix);
21 21
 
22
-        if (!\class_exists(\FPDF::class)) {
22
+        if(!\class_exists(\FPDF::class)){
23 23
             throw new \BadMethodCallException(
24 24
                 'The QRFpdf output requires FPDF as dependency but the class "\FPDF" couldn\'t be found.'
25 25
             );
@@ -31,14 +31,14 @@  discard block
 block discarded – undo
31 31
      */
32 32
     protected function setModuleValues(): void
33 33
     {
34
-        foreach ($this::DEFAULT_MODULE_VALUES as $M_TYPE => $defaultValue) {
34
+        foreach($this::DEFAULT_MODULE_VALUES as $M_TYPE => $defaultValue){
35 35
             $v = $this->options->moduleValues[$M_TYPE] ?? null;
36 36
 
37
-            if (!\is_array($v) || \count($v) < 3) {
37
+            if(!\is_array($v) || \count($v) < 3){
38 38
                 $this->moduleValues[$M_TYPE] = $defaultValue
39 39
                     ? [0, 0, 0]
40 40
                     : [255, 255, 255];
41
-            } else {
41
+            } else{
42 42
                 $this->moduleValues[$M_TYPE] = \array_values($v);
43 43
             }
44 44
         }
@@ -55,13 +55,13 @@  discard block
 block discarded – undo
55 55
         $fpdf->AddPage();
56 56
 
57 57
         $prevColor = null;
58
-        foreach ($this->matrix->matrix() as $y => $row) {
59
-            foreach ($row as $x => $M_TYPE) {
58
+        foreach($this->matrix->matrix() as $y => $row){
59
+            foreach($row as $x => $M_TYPE){
60 60
                 /**
61 61
                  * @var int $M_TYPE
62 62
                  */
63 63
                 $color = $this->moduleValues[$M_TYPE];
64
-                if ($prevColor === null || $prevColor !== $color) {
64
+                if($prevColor === null || $prevColor !== $color){
65 65
                     $fpdf->SetFillColor(...$color);
66 66
                     $prevColor = $color;
67 67
                 }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
         $pdfData = $fpdf->Output('S');
73 73
 
74
-        if ($file !== null) {
74
+        if($file !== null){
75 75
             $this->saveToFile($pdfData, $file);
76 76
         }
77 77
 
Please login to merge, or discard this patch.
Braces   +11 added lines, -12 removed lines patch added patch discarded remove patch
@@ -13,13 +13,11 @@  discard block
 block discarded – undo
13 13
  * @see https://github.com/Setasign/FPDF
14 14
  * @see http://www.fpdf.org/
15 15
  */
16
-class QRFpdf extends QROutputAbstract
17
-{
18
-    public function __construct(SettingsContainerInterface $options, QRMatrix $matrix)
19
-    {
16
+class QRFpdf extends QROutputAbstract{
17
+    public function __construct(SettingsContainerInterface $options, QRMatrix $matrix){
20 18
         parent::__construct($options, $matrix);
21 19
 
22
-        if (!\class_exists(\FPDF::class)) {
20
+        if (!\class_exists(\FPDF::class)){
23 21
             throw new \BadMethodCallException(
24 22
                 'The QRFpdf output requires FPDF as dependency but the class "\FPDF" couldn\'t be found.'
25 23
             );
@@ -31,14 +29,15 @@  discard block
 block discarded – undo
31 29
      */
32 30
     protected function setModuleValues(): void
33 31
     {
34
-        foreach ($this::DEFAULT_MODULE_VALUES as $M_TYPE => $defaultValue) {
32
+        foreach ($this::DEFAULT_MODULE_VALUES as $M_TYPE => $defaultValue){
35 33
             $v = $this->options->moduleValues[$M_TYPE] ?? null;
36 34
 
37
-            if (!\is_array($v) || \count($v) < 3) {
35
+            if (!\is_array($v) || \count($v) < 3){
38 36
                 $this->moduleValues[$M_TYPE] = $defaultValue
39 37
                     ? [0, 0, 0]
40 38
                     : [255, 255, 255];
41
-            } else {
39
+            }
40
+            else{
42 41
                 $this->moduleValues[$M_TYPE] = \array_values($v);
43 42
             }
44 43
         }
@@ -55,13 +54,13 @@  discard block
 block discarded – undo
55 54
         $fpdf->AddPage();
56 55
 
57 56
         $prevColor = null;
58
-        foreach ($this->matrix->matrix() as $y => $row) {
59
-            foreach ($row as $x => $M_TYPE) {
57
+        foreach ($this->matrix->matrix() as $y => $row){
58
+            foreach ($row as $x => $M_TYPE){
60 59
                 /**
61 60
                  * @var int $M_TYPE
62 61
                  */
63 62
                 $color = $this->moduleValues[$M_TYPE];
64
-                if ($prevColor === null || $prevColor !== $color) {
63
+                if ($prevColor === null || $prevColor !== $color){
65 64
                     $fpdf->SetFillColor(...$color);
66 65
                     $prevColor = $color;
67 66
                 }
@@ -71,7 +70,7 @@  discard block
 block discarded – undo
71 70
 
72 71
         $pdfData = $fpdf->Output('S');
73 72
 
74
-        if ($file !== null) {
73
+        if ($file !== null){
75 74
             $this->saveToFile($pdfData, $file);
76 75
         }
77 76
 
Please login to merge, or discard this patch.