for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Infrastructure\IO\Http\User\GetView\Response;
use OpenApi\Annotations as OA;
/**
* @OA\Schema(
* schema="UserViewResponse",
* @OA\Property(example="UserName", property="login", format="string"),
* @OA\Property(example="13.12.2020 00:04:20", property="created_at", format="string"),
* )
*/
final class Response
{
public function __construct(
public string $login,
public string $created_at,
) {
}