Merge pull request #10472 from thehereward/add-throws-tags-to-php-docs

Add @throws tags to PHPDocs.
This commit is contained in:
Dmitry Naumenko
2015-12-24 13:36:29 +02:00
3 changed files with 3 additions and 0 deletions

View File

@@ -230,6 +230,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
* @param Query $values
* @param array $params
* @return string SQL
* @throws NotSupportedException
*/
protected function buildSubqueryInCondition($operator, $columns, $values, &$params)
{

View File

@@ -243,6 +243,7 @@ class Schema extends \yii\db\Schema
/**
* Collects the foreign key column details for the given table.
* @param TableSchema $table the table metadata
* @throws \Exception
*/
protected function findConstraints($table)
{

View File

@@ -315,6 +315,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
* @param Query $values
* @param array $params
* @return string SQL
* @throws NotSupportedException
*/
protected function buildSubqueryInCondition($operator, $columns, $values, &$params)
{