Completed
Push — master ( edaca2...8b5c82 )
by Peter
13:39
created
src/PluginsContainer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 */
54 54
 	public function apply($config)
55 55
 	{
56
-		foreach ((array)$config as $name => $value)
56
+		foreach ((array) $config as $name => $value)
57 57
 		{
58 58
 			$this->offsetSet($name, $value);
59 59
 		}
@@ -134,9 +134,9 @@  discard block
 block discarded – undo
134 134
 		{
135 135
 			throw new GazeboException("Class `$name` used as key does not exists. Tried to set value.");
136 136
 		}
137
-		foreach($value as $cfg)
137
+		foreach ($value as $cfg)
138 138
 		{
139
-			if(is_array($cfg))
139
+			if (is_array($cfg))
140 140
 			{
141 141
 				$className = $cfg[$this->_di->classField];
142 142
 			}
Please login to merge, or discard this patch.
src/PluginFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
 					(string) $interfaces
125 125
 				];
126 126
 			}
127
-			$key .= '.' . implode('.', $interfaces);
127
+			$key .= '.'.implode('.', $interfaces);
128 128
 		}
129 129
 		$key .= $this->getKey($config);
130 130
 		if (!isset($this->instances[$key]))
Please login to merge, or discard this patch.
src/Gazebo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 	{
38 38
 		if (null === self::$_version)
39 39
 		{
40
-			self::$_version = require __DIR__ . '/version.php';
40
+			self::$_version = require __DIR__.'/version.php';
41 41
 		}
42 42
 		return self::$_version;
43 43
 	}
Please login to merge, or discard this patch.