Add comments

This commit is contained in:
Dennis Eichhorn 2016-11-06 14:42:31 +01:00
parent dcdce3efc2
commit 0aad7e90ad

View File

@ -64,14 +64,20 @@ class Group implements ArrayableInterface, \JsonSerializable
protected $members = []; protected $members = [];
/** /**
* Parents . * Parents.
* *
* @var int[] * @var int[]
* @since 1.0.0 * @since 1.0.0
*/ */
protected $parents = []; protected $parents = [];
private $status = GroupStatus::INACTIVE; /**
* Group status.
*
* @var int
* @since 1.0.0
*/
protected $status = GroupStatus::INACTIVE;
/** /**
* Permissions. * Permissions.