for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Src\UseCases\Domain\Context\Dto;
use App\Src\UseCases\Domain\Shared\Model\Dto;
class UserDto extends Dto
{
public $userUid;
public $firstname;
public $lastname;
public function __construct(string $userId, string $firstname, string $lastname)
$this->userUid = $userId;
$this->firstname = $firstname;
$this->lastname = $lastname;
}