Completed
Pull Request — develop (#4)
by
unknown
07:32
created
src/TransformableCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
     public function getTransformerClass($class)
53 53
     {
54
-        $class = $this->getNamespace() . '\\' . $class;
54
+        $class = $this->getNamespace().'\\'.$class;
55 55
 
56 56
         if (class_exists($class)) {
57 57
             return $class;
Please login to merge, or discard this patch.
src/Commands/TransformerMakeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     protected function getStub()
36 36
     {
37
-        return __DIR__ . '/stubs/transformer.stub';
37
+        return __DIR__.'/stubs/transformer.stub';
38 38
     }
39 39
 
40 40
     /**
@@ -46,6 +46,6 @@  discard block
 block discarded – undo
46 46
      */
47 47
     protected function getDefaultNamespace($rootNamespace)
48 48
     {
49
-        return $rootNamespace . '\Transformers';
49
+        return $rootNamespace.'\Transformers';
50 50
     }
51 51
 }
Please login to merge, or discard this patch.