| 1 | <?php |
||
| 21 | final class InstitutionsWithPersonalRaDetailsUpdatedEvent extends ConfigurationEvent |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var string[] |
||
| 25 | */ |
||
| 26 | public $institutionsWithPersonalRaDetails; |
||
|
|
|||
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $configurationId |
||
| 30 | * @param string[] $institutionsWithPersonalRaDetails |
||
| 31 | */ |
||
| 32 | public function __construct($configurationId, array $institutionsWithPersonalRaDetails) |
||
| 38 | |||
| 39 | public static function deserialize(array $data) |
||
| 43 | |||
| 44 | public function serialize() |
||
| 51 | } |
||
| 52 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.