| 1 | <?php |
||
| 26 | final class UserResponse extends AbstractResponse implements InitializationInterface { |
||
| 27 | /** |
||
| 28 | * @var string user identifier |
||
| 29 | */ |
||
| 30 | private $id = ''; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string user identifier |
||
| 34 | */ |
||
| 35 | 1 | public function getId() { |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @inheritdoc |
||
| 41 | * @return UserResponse resolved user instance |
||
| 42 | */ |
||
| 43 | 1 | public static function initializeByString($string) { |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @inheritdoc |
||
| 52 | */ |
||
| 53 | 1 | public function __toString() { |
|
| 60 | } |
||
| 61 |