Fixed inheritdoc syntax

This commit is contained in:
Chris Boden 2012-04-25 21:00:08 -04:00
parent 3908a69741
commit 01ccbcf8c8
6 changed files with 12 additions and 12 deletions

View File

@ -154,7 +154,7 @@ class IOServerComponent implements MessageComponentInterface {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function onOpen(ConnectionInterface $conn) { public function onOpen(ConnectionInterface $conn) {
$new_socket = clone $conn->getSocket(); $new_socket = clone $conn->getSocket();
@ -168,14 +168,14 @@ class IOServerComponent implements MessageComponentInterface {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function onMessage(ConnectionInterface $from, $msg) { public function onMessage(ConnectionInterface $from, $msg) {
return $this->_decorating->onMessage($from, $msg); return $this->_decorating->onMessage($from, $msg);
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function onClose(ConnectionInterface $conn) { public function onClose(ConnectionInterface $conn) {
$resource = $conn->getSocket()->getResource(); $resource = $conn->getSocket()->getResource();
@ -188,7 +188,7 @@ class IOServerComponent implements MessageComponentInterface {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function onError(ConnectionInterface $conn, \Exception $e) { public function onError(ConnectionInterface $conn, \Exception $e) {
return $this->_decorating->onError($conn, $e); return $this->_decorating->onError($conn, $e);

View File

@ -52,7 +52,7 @@ class WebSocketComponent implements MessageComponentInterface {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function onOpen(ConnectionInterface $conn) { public function onOpen(ConnectionInterface $conn) {
$conn->WebSocket = new \stdClass; $conn->WebSocket = new \stdClass;

View File

@ -21,7 +21,7 @@ class Runtime extends ActionTemplate {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function execute(ComponentInterface $scope = null) { public function execute(ComponentInterface $scope = null) {
$cmd = $this->_command; $cmd = $this->_command;

View File

@ -30,7 +30,7 @@ class SendMessage extends ActionTemplate {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
* @throws \UnexpectedValueException if a message was not set with setMessage() * @throws \UnexpectedValueException if a message was not set with setMessage()
*/ */
public function execute(ComponentInterface $scope = null) { public function execute(ComponentInterface $scope = null) {

View File

@ -23,7 +23,7 @@ class Composite extends \SplQueue implements CommandInterface {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function execute(ComponentInterface $scope = null) { public function execute(ComponentInterface $scope = null) {
$this->setIteratorMode(static::IT_MODE_DELETE); $this->setIteratorMode(static::IT_MODE_DELETE);

View File

@ -37,14 +37,14 @@ class Connection implements ConnectionInterface {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function __set($name, $value) { public function __set($name, $value) {
$this->_data[$name] = $value; $this->_data[$name] = $value;
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function __get($name) { public function __get($name) {
if (!$this->__isset($name)) { if (!$this->__isset($name)) {
@ -59,14 +59,14 @@ class Connection implements ConnectionInterface {
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function __isset($name) { public function __isset($name) {
return isset($this->_data[$name]); return isset($this->_data[$name]);
} }
/** /**
* @{inheritdoc} * {@inheritdoc}
*/ */
public function __unset($name) { public function __unset($name) {
unset($this->_data[$name]); unset($this->_data[$name]);