Completed
Branch master (6146bd)
by Walter
02:34
created
Category
src/Queue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,17 +42,17 @@
 block discarded – undo
42 42
         return $this->adapter;
43 43
     }
44 44
 
45
-    public function send($message, array $options = [])
45
+    public function send($message, array $options = [ ])
46 46
     {
47 47
         return $this->getAdapter()->send($this->getName(), $message, $options);
48 48
     }
49 49
 
50
-    public function receive(array $options = [])
50
+    public function receive(array $options = [ ])
51 51
     {
52 52
         return $this->getAdapter()->receive($this->getName(), $options);
53 53
     }
54 54
 
55
-    public function delete($receipt, array $options = [])
55
+    public function delete($receipt, array $options = [ ])
56 56
     {
57 57
         return $this->getAdapter()->delete($this->getName(), $receipt, $options);
58 58
     }
Please login to merge, or discard this patch.