A strongly typed Data Transfer Object without magic for PHP 8.0+ . Features support for PHP 8 union types and attributes.
composer require romanzipp/dto
use romanzipp\DTO\AbstractData;
use romanzipp\DTO\Attributes\Required;
class DummyData extends AbstractData
{
#[Required]
public string $name;
public ?string $nickname;
public string|int $height;
public DateTime $birthday;
public bool $subscribeNewsletter = false;
}
$data = new DummyData([
'name' => 'Roman',
'height' => 180,
]);
When declaring required properties, the DTO will validate all parameters against the declared properties. Take a look at the validation table for more details.
use romanzipp\DTO\AbstractData;
use romanzipp\DTO\Attributes\Required;
class DummyData extends AbstractData
{
#[Required]
public string $name;
}
$data = new DummyData([]);
romanzipp\DTO\Exceptions\InvalidDataException: The required property `name` is missing
To get an array representation of the DTO, simply call the toArray
instance method.
When transferring the DTO properties to an array format, the package will respect and call any toArray
methods of nested DTO instances or otherwise fall back to any declared jsonSerialize
method when implementing the JsonSerializable
interface.
use romanzipp\DTO\AbstractData;
class DummyData extends AbstractData
{
public string $firstName;
public DummyData $childData;
/** @var self[] */
public array $children = [];
}
$data = new DummyData([
'firstName' => 'Roman',
'childData' => new DummyData([
'firstName' => 'Tim',
]),
'children' => [
new DummyData([
'firstName' => 'Tom'
]),
],
]);
$data->toArray();
// [
// 'firstName' => 'Roman',
// 'childData' => ['firstName' => 'Tim']
// 'children' => [
// ['firstName' => 'Tom']
// ]
// ];
The toArrayConverted
method allows the simple conversion of property keys to a given case.
use romanzipp\DTO\AbstractData;
use romanzipp\DTO\Cases;
class DummyData extends AbstractData
{
public string $firstName;
}
$data = new DummyData([
'firstName' => 'Roman',
]);
$data->toArrayConverted(Cases\CamelCase::class); // ['firstName' => 'Roman'];
$data->toArrayConverted(Cases\KebabCase::class); // ['first-name' => 'Roman'];
$data->toArrayConverted(Cases\PascalCase::class); // ['FirstName' => 'Roman'];
$data->toArrayConverted(Cases\SnakeCase::class); // ['first_name' => 'Roman'];
When attaching the Flexible
attribute you can provide more parameters than declared in the DTO instance.
All properties will also be included in the toArray
methods. This would otherwise throw an InvalidDataException
.
use romanzipp\DTO\AbstractData;
use romanzipp\DTO\Attributes\Flexible;
#[Flexible]
class DummyData extends AbstractData
{
public string $name;
}
$data = new DummyData([
'name' => 'Roman',
'website' => 'ich.wtf',
]);
$data->toArray(); // ['name' => 'Roman', 'website' => 'ich.wtf];
Definition | Required | Value | Valid | isset() |
---|---|---|---|---|
public $foo |
no | '' |
✅ | ✅ |
public $foo |
no | NULL |
✅ | ✅ |
public $foo |
no | none | ✅ | ✅ |
public $foo |
yes | '' |
✅ | ✅ |
public $foo |
yes | NULL |
✅ | ✅ |
public $foo |
yes | none | 🚫 | - |
public string $foo |
no | '' |
✅ | ✅ |
public string $foo |
no | NULL |
🚫 | - |
public string $foo |
no | none | ✅ | 🚫 |
public string $foo |
yes | '' |
✅ | ✅ |
public string $foo |
yes | NULL |
🚫 | - |
public string $foo |
yes | none | 🚫 | - |
public ?string $foo |
no | '' |
✅ | ✅ |
public ?string $foo |
no | NULL |
✅ | ✅ |
public ?string $foo |
no | none | ✅ | 🚫 |
public ?string $foo |
yes | '' |
✅ | ✅ |
public ?string $foo |
yes | NULL |
✅ | ✅ |
public ?string $foo |
yes | none | 🚫 | - |
public ?string $foo = null |
no | '' |
✅ | ✅ |
public ?string $foo = null |
no | NULL |
✅ | ✅ |
public ?string $foo = null |
no | none | ✅ | ✅ |
public ?string $foo = null |
yes | '' |
- | |
public ?string $foo = null |
yes | NULL |
- | |
public ?string $foo = null |
yes | none | - |
* Attributes with default values cannot be required.
./vendor/bin/phpunit
This package has been inspired by Spaties Data-Transfer-Object released under the MIT License.