Completed
Pull Request — master (#17)
by John
02:34
created
tests/unit/Field/Renderer/FixedTextRendererTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,14 +11,14 @@
 block discarded – undo
11 11
 {
12 12
     public function testRender()
13 13
     {
14
-        $fontResolver = function () {
14
+        $fontResolver = function() {
15 15
         };
16 16
         $text = 'this is some text';
17 17
         $fontSize = 42;
18 18
         $orientation = 90;
19 19
         $tracerColour = '#ccc';
20 20
 
21
-        $textExpectation = function ($actualClosure) use ($text, $fontSize) {
21
+        $textExpectation = function($actualClosure) use ($text, $fontSize) {
22 22
             $actualFont;
23 23
             $actualClosure($actualFont);
24 24
 
Please login to merge, or discard this patch.
tests/unit/Field/Renderer/BarcodeRendererTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function testRender()
13 13
     {
14
-        $fontResolver = function () {
14
+        $fontResolver = function() {
15 15
         };
16 16
         $text = 'this is some text';
17 17
         $width = 104;
Please login to merge, or discard this patch.