diff --git a/src/Ratchet/Component/Server/IOServerComponent.php b/src/Ratchet/Component/Server/IOServerComponent.php index d2dac8c..f328647 100644 --- a/src/Ratchet/Component/Server/IOServerComponent.php +++ b/src/Ratchet/Component/Server/IOServerComponent.php @@ -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); diff --git a/src/Ratchet/Component/WebSocket/WebSocketComponent.php b/src/Ratchet/Component/WebSocket/WebSocketComponent.php index 454128d..a2267fd 100644 --- a/src/Ratchet/Component/WebSocket/WebSocketComponent.php +++ b/src/Ratchet/Component/WebSocket/WebSocketComponent.php @@ -52,7 +52,7 @@ class WebSocketComponent implements MessageComponentInterface { } /** - * @{inheritdoc} + * {@inheritdoc} */ public function onOpen(ConnectionInterface $conn) { $conn->WebSocket = new \stdClass; diff --git a/src/Ratchet/Resource/Command/Action/Runtime.php b/src/Ratchet/Resource/Command/Action/Runtime.php index 4211054..17ccd17 100644 --- a/src/Ratchet/Resource/Command/Action/Runtime.php +++ b/src/Ratchet/Resource/Command/Action/Runtime.php @@ -21,7 +21,7 @@ class Runtime extends ActionTemplate { } /** - * @{inheritdoc} + * {@inheritdoc} */ public function execute(ComponentInterface $scope = null) { $cmd = $this->_command; diff --git a/src/Ratchet/Resource/Command/Action/SendMessage.php b/src/Ratchet/Resource/Command/Action/SendMessage.php index 8a9bc84..3eca5fe 100644 --- a/src/Ratchet/Resource/Command/Action/SendMessage.php +++ b/src/Ratchet/Resource/Command/Action/SendMessage.php @@ -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) { diff --git a/src/Ratchet/Resource/Command/Composite.php b/src/Ratchet/Resource/Command/Composite.php index be44815..1a0f8d3 100644 --- a/src/Ratchet/Resource/Command/Composite.php +++ b/src/Ratchet/Resource/Command/Composite.php @@ -23,7 +23,7 @@ class Composite extends \SplQueue implements CommandInterface { } /** - * @{inheritdoc} + * {@inheritdoc} */ public function execute(ComponentInterface $scope = null) { $this->setIteratorMode(static::IT_MODE_DELETE); diff --git a/src/Ratchet/Resource/Connection.php b/src/Ratchet/Resource/Connection.php index 5d5e015..e15eaa9 100644 --- a/src/Ratchet/Resource/Connection.php +++ b/src/Ratchet/Resource/Connection.php @@ -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]);