Completed
Pull Request — master (#15)
by John
07:45 queued 12s
created
src/Field/Renderer/FixedTextRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
 
84 84
         $size = $fontOverride->getBoxSize();
85 85
 
86
-        $fontCallback = function (&$font) use ($fontOverride) {
86
+        $fontCallback = function(&$font) use ($fontOverride) {
87 87
             // override the font created by Canvas::text()
88 88
             $font = $fontOverride;
89 89
         };
Please login to merge, or discard this patch.
src/Field/Renderer/GraphicPrimitive/OutlineBoxRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         $canvas = $this->getImageManager()->canvas($this->getWidth(), $this->getHeight(), $this->getTracerColour());
16 16
 
17
-        $rectangleConf = function ($rectangle) {
17
+        $rectangleConf = function($rectangle) {
18 18
             $rectangle->border($this->getLineWeight(), '#000');
19 19
         };
20 20
 
Please login to merge, or discard this patch.
src/Field/Renderer/BarcodeRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
         $fontPath = $fontResolver($this->getFontFace());
38 38
 
39
-        $fontCallback = function ($font) use ($fontPath) {
39
+        $fontCallback = function($font) use ($fontPath) {
40 40
             $font->file($fontPath);
41 41
             $font->size($this->getFontSize());
42 42
             $font->color('#fff');
Please login to merge, or discard this patch.