1
0
Fork 0
mirror of https://github.com/Oreolek/yii2-nested-sets.git synced 2024-07-01 05:55:00 +03:00

phpDoc fixes

This commit is contained in:
Alexander Kochetov 2014-01-15 19:28:36 +04:00
parent 573dcdaec2
commit 4d2e66fa8a
2 changed files with 47 additions and 3 deletions

View file

@ -23,20 +23,49 @@ class NestedSet extends Behavior
* @var ActiveRecord the owner of this behavior.
*/
public $owner;
/**
* @var bool
*/
public $hasManyRoots = false;
/**
* @var string
*/
public $rootAttribute = 'root';
/**
* @var string
*/
public $leftAttribute = 'lft';
/**
* @var string
*/
public $rightAttribute = 'rgt';
/**
* @var string
*/
public $levelAttribute = 'level';
/**
* @var bool
*/
private $_ignoreEvent = false;
/**
* @var bool
*/
private $_deleted = false;
/**
* @var int
*/
private $_id;
/**
* @var array
*/
private static $_cached;
/**
* @var int
*/
private static $_c = 0;
/**
* Declares event handlers for the [[owner]]'s events.
* @return array events (array keys) and the corresponding event handler methods (array values).
* @inheritdoc
*/
public function events()
{
@ -49,7 +78,7 @@ class NestedSet extends Behavior
}
/**
* Initializes the object.
* @inheritdoc
*/
public function init()
{

View file

@ -20,10 +20,25 @@ class NestedSetQuery extends Behavior
* @var ActiveQuery the owner of this behavior.
*/
public $owner;
/**
* @var bool
*/
public $hasManyRoots = false;
/**
* @var string
*/
public $rootAttribute = 'root';
/**
* @var string
*/
public $leftAttribute = 'lft';
/**
* @var string
*/
public $rightAttribute = 'rgt';
/**
* @var string
*/
public $levelAttribute = 'level';
/**