Test Failed
Push — master ( 84c4ce...12a7ff )
by Mariano
06:11
created
src/ConverterBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,12 +129,12 @@
 block discarded – undo
129 129
      */
130 130
     public function withImplementation($class)
131 131
     {
132
-        $this->converter = function () use ($class) {
132
+        $this->converter = function() use ($class) {
133 133
             $object = $this->getObjectFromClass($class);
134 134
 
135 135
             if (!is_subclass_of($object, Converter::class)) {
136 136
                 throw new ObjectIsNotConverterException(
137
-                    'Object of type ' . get_class($object) . ' does not implement ' . Converter::class
137
+                    'Object of type '.get_class($object).' does not implement '.Converter::class
138 138
                 );
139 139
             }
140 140
 
Please login to merge, or discard this patch.