init
This commit is contained in:
1078
vendor/yiisoft/yii2-mongodb/src/rbac/MongoDbManager.php
vendored
Normal file
1078
vendor/yiisoft/yii2-mongodb/src/rbac/MongoDbManager.php
vendored
Normal file
File diff suppressed because it is too large
Load Diff
22
vendor/yiisoft/yii2-mongodb/src/rbac/Permission.php
vendored
Normal file
22
vendor/yiisoft/yii2-mongodb/src/rbac/Permission.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace yii\mongodb\rbac;
|
||||
|
||||
/**
|
||||
* Permission is a special version of [[\yii\rbac\Permission]] dedicated to MongoDB RBAC implementation.
|
||||
*
|
||||
* @author Paul Klimov <klimov.paul@gmail.com>
|
||||
* @since 2.0.5
|
||||
*/
|
||||
class Permission extends \yii\rbac\Permission
|
||||
{
|
||||
/**
|
||||
* @var array|null list of parent item names.
|
||||
*/
|
||||
public $parents;
|
||||
}
|
||||
22
vendor/yiisoft/yii2-mongodb/src/rbac/Role.php
vendored
Normal file
22
vendor/yiisoft/yii2-mongodb/src/rbac/Role.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace yii\mongodb\rbac;
|
||||
|
||||
/**
|
||||
* Role is a special version of [[\yii\rbac\Role]] dedicated to MongoDB RBAC implementation.
|
||||
*
|
||||
* @author Paul Klimov <klimov.paul@gmail.com>
|
||||
* @since 2.0.5
|
||||
*/
|
||||
class Role extends \yii\rbac\Role
|
||||
{
|
||||
/**
|
||||
* @var array|null list of parent item names.
|
||||
*/
|
||||
public $parents;
|
||||
}
|
||||
Reference in New Issue
Block a user