Completed
Push — master ( d1f4bd...fa732c )
by Ross
8s
created
src/PropertyNormalizer/SimplePropertyNormalizer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@
 block discarded – undo
38 38
     {
39 39
         switch (gettype($value)) {
40 40
             case 'object':
41
-                return 'object(' . get_class($value) . ')';
41
+                return 'object('.get_class($value).')';
42 42
             case 'array':
43 43
                 return '*array*';
44 44
             case 'resource':
45
-                return 'resource(' . get_resource_type($value) . ')';
45
+                return 'resource('.get_resource_type($value).')';
46 46
             case 'NULL':
47 47
                 return '*null*';
48 48
             default:
Please login to merge, or discard this patch.
src/Formatter/ClassNameFormatter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      */
15 15
     public function commandReceived($command)
16 16
     {
17
-        return 'Command received: ' . get_class($command);
17
+        return 'Command received: '.get_class($command);
18 18
     }
19 19
 
20 20
     /**
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function commandHandled($command)
25 25
     {
26
-        return 'Command succeeded: ' . get_class($command);
26
+        return 'Command succeeded: '.get_class($command);
27 27
     }
28 28
 
29 29
     /**
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function commandFailed($command)
34 34
     {
35
-        return 'Command failed: ' . get_class($command);
35
+        return 'Command failed: '.get_class($command);
36 36
     }
37 37
 
38 38
     /**
Please login to merge, or discard this patch.