| 1 | <?php |
||
| 23 | class UpdateIdentityCommand extends AbstractCommand |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | public $id; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | public $email; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | public $commonName; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @var string |
||
| 42 | */ |
||
| 43 | public $institution; |
||
| 44 | |||
| 45 | public function __construct($id, $institution) |
||
| 50 | |||
| 51 | public function serialise() |
||
| 60 | } |
||
| 61 |