Test Failed
Pull Request — master (#37)
by
unknown
06:57
created
RabbitMq/AmqpPartsHolder.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -5,21 +5,21 @@
 block discarded – undo
5 5
 class AmqpPartsHolder
6 6
 {
7 7
     /** @var array */
8
-	protected $parts;
8
+    protected $parts;
9 9
 
10
-	public function __construct()
11
-	{
12
-		$this->parts = array();
13
-	}
10
+    public function __construct()
11
+    {
12
+        $this->parts = array();
13
+    }
14 14
 
15
-	public function addPart(string $type, BaseAmqp $part): void
16
-	{
17
-		$this->parts[$type][] = $part;
18
-	}
15
+    public function addPart(string $type, BaseAmqp $part): void
16
+    {
17
+        $this->parts[$type][] = $part;
18
+    }
19 19
 
20
-	public function getParts(string $type): array
21
-	{
20
+    public function getParts(string $type): array
21
+    {
22 22
         $type = (string) $type;
23
-		return isset($this->parts[$type]) ? $this->parts[$type] : array();
24
-	}
23
+        return isset($this->parts[$type]) ? $this->parts[$type] : array();
24
+    }
25 25
 }
Please login to merge, or discard this patch.
RabbitMq/Binding.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,12 +34,12 @@
 block discarded – undo
34 34
      */
35 35
     protected $arguments;
36 36
 
37
-     public function getExchange(): string
37
+        public function getExchange(): string
38 38
     {
39 39
         return $this->exchange;
40 40
     }
41 41
 
42
-     public function setExchange(string $exchange): void
42
+        public function setExchange(string $exchange): void
43 43
     {
44 44
         $this->exchange = $exchange;
45 45
     }
Please login to merge, or discard this patch.