Passed
Push — master ( 19b012...ae2464 )
by Rick
02:24
created
src/ComponentContainer.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	    $id = get_class($object);
28 28
 
29 29
 	    if ($this->has($id))
30
-	        throw new ContainerException('A class with ID ' . $id . ' already exists in this container.');
30
+		throw new ContainerException('A class with ID ' . $id . ' already exists in this container.');
31 31
 
32 32
 		$this->storedComponents[$id] = $object;
33 33
 	}
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
 	/**
50 50
 	 * @inheritdoc
51
-     * @throws ContainerException
51
+	 * @throws ContainerException
52 52
 	 */
53 53
 	public function has($id)
54 54
 	{
Please login to merge, or discard this patch.