| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function __construct( |
||
| 20 | UUID $uuid, |
||
| 21 | Permission $rolePermission |
||
| 22 | ) { |
||
| 23 | parent::__construct($uuid); |
||
| 24 | |||
| 25 | // The built-in serialize call does not work on Enum. |
||
| 26 | // Just store them internally as string but expose as Enum. |
||
| 27 | $this->rolePermission = $rolePermission->toNative(); |
||
| 28 | } |
||
| 29 | |||
| 38 |