@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | * @access public |
| 56 | 56 | * @param string $name name of the event |
| 57 | 57 | * @param \PEIP\INF\Event\Event $object an event object |
| 58 | - * @return boolean |
|
| 58 | + * @return boolean|null |
|
| 59 | 59 | */ |
| 60 | 60 | public function notify($name, $object){ |
| 61 | 61 | if($object instanceof \PEIP\INF\Event\Event){ |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * @param array $headers headers of the event-object as key/value pairs |
| 88 | 88 | * @param string $eventClass event-class to create instances from |
| 89 | 89 | * @return |
| 90 | - * @see EventBuilder |
|
| 90 | + boolean|null @see EventBuilder |
|
| 91 | 91 | */ |
| 92 | 92 | public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
| 93 | 93 | if(!$this->hasListeners($name, ($object))){ |
@@ -65,7 +65,6 @@ |
||
| 65 | 65 | * Disconnects all listeners. |
| 66 | 66 | * |
| 67 | 67 | * @access public |
| 68 | - * @param Callable|PEIP\INF\Handler\Handler $listener |
|
| 69 | 68 | * @return void |
| 70 | 69 | */ |
| 71 | 70 | public function disconnectAll(){ |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | * @access public |
| 24 | 24 | * @param string $name name of the event |
| 25 | 25 | * @param \PEIP\INF\Event\Event $object an event object |
| 26 | - * @return boolean |
|
| 26 | + * @return boolean|null |
|
| 27 | 27 | */ |
| 28 | 28 | public function notify($name, $object){ |
| 29 | 29 | if($object instanceof \PEIP\INF\Event\Event){ |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * @param array $headers headers of the event-object as key/value pairs |
| 54 | 54 | * @param string $eventClass event-class to create instances from |
| 55 | 55 | * @return |
| 56 | - * @see EventBuilder |
|
| 56 | + boolean|null @see EventBuilder |
|
| 57 | 57 | */ |
| 58 | 58 | public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
| 59 | 59 | if(!$this->hasListeners($name, ($object))){ |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | * @access public |
| 39 | 39 | * @param string $name name of the event |
| 40 | 40 | * @param \PEIP\INF\Event\Event $object an event object |
| 41 | - * @return boolean |
|
| 41 | + * @return boolean|null |
|
| 42 | 42 | */ |
| 43 | 43 | public function notify($name, $object){ |
| 44 | 44 | if($object instanceof \PEIP\INF\Event\Event){ |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | * @access public |
| 163 | 163 | * @param $name |
| 164 | 164 | * @param $subject |
| 165 | - * @return mixed |
|
| 165 | + * @return \PEIP\INF\Handler\Handler |
|
| 166 | 166 | */ |
| 167 | 167 | public function notifyUntil($name, $subject){ |
| 168 | 168 | if($this->hasListeners($name, $subject)){ |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | * @access protected |
| 206 | 206 | * @param $name |
| 207 | 207 | * @param $object |
| 208 | - * @return boolean |
|
| 208 | + * @return boolean|null |
|
| 209 | 209 | */ |
| 210 | 210 | protected static function doNotify(array $listeners, $subject){ |
| 211 | 211 | foreach($listeners as $listener){ |
@@ -49,7 +49,6 @@ |
||
| 49 | 49 | * @access public |
| 50 | 50 | * @param mixed $subject the subject for the event |
| 51 | 51 | * @param string $name the name of the event |
| 52 | - * @param array|ArrayAccess $headers the headers for the event |
|
| 53 | 52 | */ |
| 54 | 53 | public function __construct($subject, $name, $parameters = array(), $type = false){ |
| 55 | 54 | parent::__construct($subject, Test::ensureArrayAccess($parameters)); |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | * @see GenericBuilder |
| 72 | 72 | * @static |
| 73 | 73 | * @access protected |
| 74 | - * @param object $className name of class to build instance for. |
|
| 74 | + * @param string $className name of class to build instance for. |
|
| 75 | 75 | * @param array $arguments arguments for the constructor |
| 76 | 76 | * @return object build and modified srvice instance |
| 77 | 77 | */ |
@@ -55,7 +55,6 @@ discard block |
||
| 55 | 55 | * sets the channel to send requests from the gateway |
| 56 | 56 | * |
| 57 | 57 | * @access public |
| 58 | - * @param \PEIP\INF\Channel\Channel $replyChannel The default channel to receive requests from the gateway |
|
| 59 | 58 | * @return |
| 60 | 59 | */ |
| 61 | 60 | public function setRequestChannel(\PEIP\INF\Channel\Channel $requestChannel){ |
@@ -108,7 +107,7 @@ discard block |
||
| 108 | 107 | * sends and receives a request/message through the gateway |
| 109 | 108 | * |
| 110 | 109 | * @access public |
| 111 | - * @param mixed $content the content/payload for the message to send |
|
| 110 | + * @param \Order $content the content/payload for the message to send |
|
| 112 | 111 | * @return mixed content/payload of the received message |
| 113 | 112 | */ |
| 114 | 113 | public function sendAndReceive($content){ |
@@ -33,10 +33,10 @@ |
||
| 33 | 33 | * Send a message, blocking until either the message is accepted or the |
| 34 | 34 | * specified timeout period elapses. |
| 35 | 35 | * |
| 36 | - * @param message the {@link Message} to send |
|
| 37 | - * @param timeout the timeout in milliseconds |
|
| 36 | + * @param message \PEIP\INF\Message\Message {@link Message} to send |
|
| 37 | + * @param timeout integer timeout in milliseconds |
|
| 38 | 38 | * |
| 39 | - * @return <code>true</code> if the message is sent successfully, |
|
| 39 | + * @return null|boolean if the message is sent successfully, |
|
| 40 | 40 | * <code>false</false> if the specified timeout period elapses or |
| 41 | 41 | * the send is interrupted |
| 42 | 42 | */ |