Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
5 | trait EditableReadonlyTrait |
||
6 | { |
||
7 | /** |
||
8 | * @var bool |
||
9 | */ |
||
10 | protected $readonlyEditable = false; |
||
11 | |||
12 | /** |
||
13 | * @return mixed |
||
14 | */ |
||
15 | public function getReadonly() |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @param Closure|bool $readonlyEditable |
||
22 | * |
||
23 | * @return $this |
||
24 | */ |
||
25 | public function setReadonly($readonlyEditable) |
||
32 |