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

@@ -74,18 +74,18 @@ class Query extends Component implements QueryInterface
* @var array how to join with other tables. Each array element represents the specification
* of one join which has the following structure:
*
* ~~~
* ```php
* [$joinType, $tableName, $joinCondition]
* ~~~
* ```
*
* For example,
*
* ~~~
* ```php
* [
* ['INNER JOIN', 'user', 'user.id = author_id'],
* ['LEFT JOIN', 'team', 'team.id = team_id'],
* ]
* ~~~
* ```
*/
public $join;
/**