Value Object

Run Settings
LanguagePHP
Language Version
Run Command
<?php $data = [ ['id' => 1, 'email' => 'sobchukvadim@gmail.com'], ['id' => 2, 'email' => 'v.sobchuk@freshdesign.ua'], ['id' => 3, 'email' => 'ghf'], ]; class CustomerValueObject implements JsonSerializable { private $id; private $email; public function __construct(int $id, string $email) { $this->id = $id; if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { throw new InvalidArgumentException(sprintf('"%s" is not a valid email', $email)); } $this->email = $email; } public function toArray() { return [ 'id' => $this->id, 'email' => $this->email ]; } public function jsonSerialize() { return $this->toArray(); } } $result = []; foreach ($data as $customer) { $result[] = (new CustomerValueObject($customer['id'], $customer['email']))->toArray(); } var_dump($result);
Editor Settings
Theme
Key bindings
Full width
Lines