1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace app\admin\attr;
- use Attribute;
- class Permission
- {
-
- public $value;
-
- public $ignore;
-
- public $inherit;
-
- public $useMethodName;
-
- public function __construct($value = '', $ignore = false, $inherit = true, $useMethodName = true)
- {
- $this->value = $value;
- $this->ignore = $ignore;
- $this->inherit = $inherit;
- $this->useMethodName = $useMethodName;
- }
- }
|