Completed
Branch develop (73f28b)
by Filipe
07:38
created
src/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 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.
src/ContainerBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      */
81 81
     private function applyDefinitions()
82 82
     {
83
-        foreach($this->definitions as $name => $entry) {
83
+        foreach ($this->definitions as $name => $entry) {
84 84
             if (
85 85
                 is_string($entry) &&
86 86
                 preg_match('/^@(?P<key>.*)$/i', $entry, $result)
Please login to merge, or discard this patch.