Completed
Push — master ( b3c712...22ceeb )
by Michael
02:14
created
src/AbstractContainerMediator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @param string     $eventName Name of the event the listener is being added for.
50 50
      * @param array      $listener  Listener to be added. ['containerID', 'method']
51
-     * @param int|string $priority  Priority level for the added listener.
51
+     * @param integer $priority  Priority level for the added listener.
52 52
      *
53 53
      * @return ContainerMediatorInterface Fluent interface.
54 54
      * @throws \DomainException
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      *
146 146
      * @param string     $eventName Event name that listener is being removed from.
147 147
      * @param array      $listener  Service listener to be removed.
148
-     * @param int|string $priority  Priority level for the to be removed listener.
148
+     * @param integer $priority  Priority level for the to be removed listener.
149 149
      *
150 150
      * @return ContainerMediatorInterface Fluent interface.
151 151
      * @throws \DomainException
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     abstract public function setServiceContainer($value = null): ContainerMediatorInterface;
239 239
     /**
240 240
      * @param string     $eventName
241
-     * @param string|int $priority
241
+     * @param integer $priority
242 242
      *
243 243
      * @return int
244 244
      */
Please login to merge, or discard this patch.
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.