20 lines
306 B
PHP
20 lines
306 B
PHP
<?php
|
|
|
|
namespace App\Tmdb\Dto;
|
|
|
|
use Symfony\Component\Serializer\Attribute\SerializedPath;
|
|
|
|
class CastMemberDto
|
|
{
|
|
|
|
public function __construct(
|
|
#[SerializedPath('[name]')]
|
|
public string $name,
|
|
) {}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->name;
|
|
}
|
|
}
|