| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | class Bean |
||
| 7 | { |
||
| 8 | const SCOPE_PROTOTYPE = 'SCOPE_PROTOTYPE'; |
||
| 9 | const SCOPE_SESSION = 'SCOPE_SESSION'; |
||
| 10 | const SCOPE_GLOBAL = 'SCOPE_GLOBAL'; |
||
| 11 | |||
| 12 | public $name, $aliases = [], $value, $scope; |
||
| 13 | |||
| 14 | public function __construct(string $name, $value, string $scope = null) { |
||
| 18 | } |
||
| 19 | |||
| 20 | public function addAlias(string $alias) { |
||
| 22 | } |
||
| 23 | } |