| 1 | <?php |
||
| 23 | class User extends AbstractComponent implements UserInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * new instance |
||
| 27 | * |
||
| 28 | * @param string|null $data the component value |
||
| 29 | */ |
||
| 30 | 816 | public function __construct($data = null) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritdoc |
||
| 40 | */ |
||
| 41 | 798 | public function __toString() |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @inheritdoc |
||
| 48 | */ |
||
| 49 | 2 | public function __debugInfo() |
|
| 53 | } |
||
| 54 |