1. Go to this page and download the library: Download benycode/dto library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
benycode / dto example snippets
class UserDTO implements Arrayable, JsonSerializable
{
use DTOTrait;
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $avatarUrl;
/**
* UserDTO constructor.
* @param int $id
* @param string $name
* @param string $avatarUrl
*/
public function __construct(int $id, string $name, string $avatarUrl)
{
$this->id = $id;
$this->name = $name;
$this->avatarUrl = $avatarUrl;
}
/**
* @return int
*/
public function getId(): int
{
return $this->id;
}
/**
* @return string
*/
public function getName(): string
{
return $this->name;
}
/**
* @return string
*/
public function getAvatarUrl(): string
{
return $this->avatarUrl;
}
/**
* @inheritDoc
*/
protected static function createFromArray(array $data): self
{
return new self(
Arr::get($data, 'id'),
Arr::get($data, 'name'),
Arr::get($data, 'avatar_url')
);
}
/**
* @return array
*/
protected static function validationRules(): array
{
return [
'id' => '