Global DOCS update: ~~~ replaced with ```

This commit is contained in:
SilverFire - Dmitry Naumenko
2015-12-02 23:15:28 +02:00
parent c96cbfa8e6
commit cd87d67f34
89 changed files with 399 additions and 398 deletions

View File

@ -16,7 +16,7 @@ use yii\base\InvalidCallException;
* returns all the rows in a single array. Rows of data can also be read by
* iterating through the reader. For example,
*
* ~~~
* ```php
* $command = $connection->createCommand('SELECT * FROM post');
* $reader = $command->query();
*
@ -31,7 +31,7 @@ use yii\base\InvalidCallException;
*
* // equivalent to:
* $rows = $reader->readAll();
* ~~~
* ```
*
* Note that since DataReader is a forward-only stream, you can only traverse it once.
* Doing it the second time will throw an exception.