link to PHP classes just as we do with normal classes

apidoc can handle this!
This commit is contained in:
Carsten Brandt
2015-06-05 21:53:24 +02:00
parent ec76a3015a
commit f68e970de2
11 changed files with 55 additions and 55 deletions

View File

@ -212,7 +212,7 @@ class DataReader extends \yii\base\Object implements \Iterator, \Countable
/**
* Resets the iterator to the initial state.
* This method is required by the interface Iterator.
* This method is required by the interface [[\Iterator]].
* @throws InvalidCallException if this method is invoked twice
*/
public function rewind()
@ -227,7 +227,7 @@ class DataReader extends \yii\base\Object implements \Iterator, \Countable
/**
* Returns the index of the current row.
* This method is required by the interface Iterator.
* This method is required by the interface [[\Iterator]].
* @return integer the index of the current row.
*/
public function key()
@ -237,7 +237,7 @@ class DataReader extends \yii\base\Object implements \Iterator, \Countable
/**
* Returns the current row.
* This method is required by the interface Iterator.
* This method is required by the interface [[\Iterator]].
* @return mixed the current row.
*/
public function current()
@ -247,7 +247,7 @@ class DataReader extends \yii\base\Object implements \Iterator, \Countable
/**
* Moves the internal pointer to the next row.
* This method is required by the interface Iterator.
* This method is required by the interface [[\Iterator]].
*/
public function next()
{
@ -257,7 +257,7 @@ class DataReader extends \yii\base\Object implements \Iterator, \Countable
/**
* Returns whether there is a row of data at current position.
* This method is required by the interface Iterator.
* This method is required by the interface [[\Iterator]].
* @return boolean whether there is a row of data at current position.
*/
public function valid()