Passed
Push — master ( b37083...55746c )
by Andreas
02:28
created
src/Converter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -71,25 +71,25 @@  discard block
 block discarded – undo
71 71
 
72 72
     public function target(string $target = null)
73 73
     {
74
-        $this->target = pathinfo($target, PATHINFO_DIRNAME) . '/' . pathinfo($target, PATHINFO_FILENAME);
74
+        $this->target = pathinfo($target, PATHINFO_DIRNAME).'/'.pathinfo($target, PATHINFO_FILENAME);
75 75
         return $this;
76 76
     }
77 77
 
78 78
     public function scaleTo(int $scaleTo)
79 79
     {
80
-        $this->options['scale-to'] = '-scale-to ' . (string) $scaleTo;
80
+        $this->options['scale-to'] = '-scale-to '.(string) $scaleTo;
81 81
         return $this;
82 82
     }
83 83
 
84 84
     public function firstPage(int $firstPage)
85 85
     {
86
-        $this->options['firstPage'] = '-f ' . (string) $firstPage;
86
+        $this->options['firstPage'] = '-f '.(string) $firstPage;
87 87
         return $this;
88 88
     }
89 89
 
90 90
     public function lastPage(int $lastPage)
91 91
     {
92
-        $this->options['lastPage'] = '-l ' . (string) $lastPage;
92
+        $this->options['lastPage'] = '-l '.(string) $lastPage;
93 93
         return $this;
94 94
     }
95 95
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
     public function format(string $format)
104 104
     {
105
-        $this->options['format'] = '-' . $this->normalizeFormat($format);
105
+        $this->options['format'] = '-'.$this->normalizeFormat($format);
106 106
         $this->setExtensionFromFormat($format);
107 107
 
108 108
         return $this;
Please login to merge, or discard this patch.