Completed
Push — master ( 3305f6...ff6d87 )
by Michael
09:39
created
src/Mediator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     /**
47 47
      * @param string     $eventName
48 48
      * @param callable   $listener
49
-     * @param int|string $priority
49
+     * @param integer $priority
50 50
      *
51 51
      * @return MediatorInterface Fluent interface
52 52
      * @throws \DomainException
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
     /**
117 117
      * @param string     $eventName
118 118
      * @param callable   $listener
119
-     * @param int|string $priority
119
+     * @param integer $priority
120 120
      *
121 121
      * @return MediatorInterface Fluent interface
122 122
      * @throws \DomainException
Please login to merge, or discard this patch.
src/AbstractContainerMediator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      *
50 50
      * @param string     $eventName Name of the event the listener is being added for.
51 51
      * @param array      $listener  Listener to be added. ['containerID', 'method']
52
-     * @param int|string $priority  Priority level for the added listener.
52
+     * @param integer $priority  Priority level for the added listener.
53 53
      *
54 54
      * @return ContainerMediatorInterface Fluent interface.
55 55
      * @throws \DomainException
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      *
153 153
      * @param string     $eventName Event name that listener is being removed from.
154 154
      * @param array      $listener  Service listener to be removed.
155
-     * @param int|string $priority  Priority level for the to be removed listener.
155
+     * @param integer $priority  Priority level for the to be removed listener.
156 156
      *
157 157
      * @return ContainerMediatorInterface Fluent interface.
158 158
      * @throws \DomainException
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     abstract public function setServiceContainer($value = \null): ContainerMediatorInterface;
240 240
     /**
241 241
      * @param string     $eventName
242
-     * @param string|int $priority
242
+     * @param integer $priority
243 243
      *
244 244
      * @return int
245 245
      * @throws \InvalidArgumentException
Please login to merge, or discard this patch.