Fixed inheritdoc syntax
This commit is contained in:
parent
3908a69741
commit
01ccbcf8c8
@ -154,7 +154,7 @@ class IOServerComponent implements MessageComponentInterface {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function onOpen(ConnectionInterface $conn) {
|
||||
$new_socket = clone $conn->getSocket();
|
||||
@ -168,14 +168,14 @@ class IOServerComponent implements MessageComponentInterface {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function onMessage(ConnectionInterface $from, $msg) {
|
||||
return $this->_decorating->onMessage($from, $msg);
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function onClose(ConnectionInterface $conn) {
|
||||
$resource = $conn->getSocket()->getResource();
|
||||
@ -188,7 +188,7 @@ class IOServerComponent implements MessageComponentInterface {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function onError(ConnectionInterface $conn, \Exception $e) {
|
||||
return $this->_decorating->onError($conn, $e);
|
||||
|
@ -52,7 +52,7 @@ class WebSocketComponent implements MessageComponentInterface {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function onOpen(ConnectionInterface $conn) {
|
||||
$conn->WebSocket = new \stdClass;
|
||||
|
@ -21,7 +21,7 @@ class Runtime extends ActionTemplate {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function execute(ComponentInterface $scope = null) {
|
||||
$cmd = $this->_command;
|
||||
|
@ -30,7 +30,7 @@ class SendMessage extends ActionTemplate {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
* @throws \UnexpectedValueException if a message was not set with setMessage()
|
||||
*/
|
||||
public function execute(ComponentInterface $scope = null) {
|
||||
|
@ -23,7 +23,7 @@ class Composite extends \SplQueue implements CommandInterface {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function execute(ComponentInterface $scope = null) {
|
||||
$this->setIteratorMode(static::IT_MODE_DELETE);
|
||||
|
@ -37,14 +37,14 @@ class Connection implements ConnectionInterface {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function __set($name, $value) {
|
||||
$this->_data[$name] = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function __get($name) {
|
||||
if (!$this->__isset($name)) {
|
||||
@ -59,14 +59,14 @@ class Connection implements ConnectionInterface {
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function __isset($name) {
|
||||
return isset($this->_data[$name]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @{inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function __unset($name) {
|
||||
unset($this->_data[$name]);
|
||||
|
Loading…
Reference in New Issue
Block a user