improved IDE autocompletion for AR::find()

[ci skip]
This commit is contained in:
octicon-git-branch(16/)
octicon-tag(16/)
Carsten Brandt
2014-08-12 23:21:15 +02:00
gitea-unlock(16/)
parent 87427294fe
commit f099616967
octicon-diff(16/tw-mr-1) 6 changed files with 6 additions and 0 deletions

1
extensions/elasticsearch/ActiveRecord.php
View File

@@ -70,6 +70,7 @@ class ActiveRecord extends BaseActiveRecord
/** /**
* @inheritdoc * @inheritdoc
* @return ActiveQuery the newly created [[ActiveQuery]] instance.
*/ */
public static function find() public static function find()
{ {

1
extensions/mongodb/ActiveRecord.php
View File

@@ -94,6 +94,7 @@ abstract class ActiveRecord extends BaseActiveRecord
/** /**
* @inheritdoc * @inheritdoc
* @return ActiveQuery the newly created [[ActiveQuery]] instance.
*/ */
public static function find() public static function find()
{ {

1
extensions/mongodb/file/ActiveRecord.php
View File

@@ -47,6 +47,7 @@ abstract class ActiveRecord extends \yii\mongodb\ActiveRecord
{ {
/** /**
* @inheritdoc * @inheritdoc
* @return ActiveQuery the newly created [[ActiveQuery]] instance.
*/ */
public static function find() public static function find()
{ {

1
extensions/redis/ActiveRecord.php
View File

@@ -51,6 +51,7 @@ class ActiveRecord extends BaseActiveRecord
/** /**
* @inheritdoc * @inheritdoc
* @return ActiveQuery the newly created [[ActiveQuery]] instance.
*/ */
public static function find() public static function find()
{ {

1
extensions/sphinx/ActiveRecord.php
View File

@@ -138,6 +138,7 @@ abstract class ActiveRecord extends BaseActiveRecord
/** /**
* @inheritdoc * @inheritdoc
* @return ActiveQuery the newly created [[ActiveQuery]] instance.
*/ */
public static function find() public static function find()
{ {

1
framework/db/ActiveRecord.php
View File

@@ -256,6 +256,7 @@ class ActiveRecord extends BaseActiveRecord
/** /**
* @inheritdoc * @inheritdoc
* @return ActiveQuery the newly created [[ActiveQuery]] instance.
*/ */
public static function find() public static function find()
{ {