Completed
Branch develop (8e06b4)
by Filipe
02:36
created
src/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     {
80 80
         if (!$this->has($id)) {
81 81
             throw new NotFoundException(
82
-                "There is no entry with '{$id}' name in the ".
82
+                "There is no entry with '{$id}' name in the " .
83 83
                 "dependency container."
84 84
             );
85 85
         }
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         $definition, $value = null, array $parameters = [],
135 135
         $scope = Scope::SINGLETON)
136 136
     {
137
-        if (! $definition instanceof DefinitionInterface) {
137
+        if (!$definition instanceof DefinitionInterface) {
138 138
             if (is_callable($value)) {
139 139
                 $value = $this->createFactoryDefinition(
140 140
                     (string) $definition,
Please login to merge, or discard this patch.