Completed
Push — master ( f2af88...e3df42 )
by Nikolas
08:12
created
src/reflection/ObjectAction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             return null;
55 55
         }
56 56
 
57
-        return $this->parser->parse(implode("\n", array_map(function ($line) {
57
+        return $this->parser->parse(implode("\n", array_map(function($line) {
58 58
             return ltrim($line, " *\r\n\t");
59 59
         }, array_slice(explode("\n", $docComment), 1, -1))));
60 60
     }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 
101 101
     protected function createInstance(array $parameters) {
102 102
         $injector = new Injector(new Factory());
103
-        $instance = $injector->injectConstructor($this->class->name, $parameters, function () {
103
+        $instance = $injector->injectConstructor($this->class->name, $parameters, function() {
104 104
             return false;
105 105
         });
106 106
 
Please login to merge, or discard this patch.
src/delivery/cli/fields/ObjectField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         }
55 55
 
56 56
         $injector = new Injector(new Factory());
57
-        $instance = $injector->injectConstructor($this->getClass($parameter), $properties, function () {
57
+        $instance = $injector->injectConstructor($this->getClass($parameter), $properties, function() {
58 58
             return false;
59 59
         });
60 60
 
Please login to merge, or discard this patch.