mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
16 lines
234 B
PHP
16 lines
234 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
readonly class Book
|
|
{
|
|
public function __construct(private string $title)
|
|
{
|
|
|
|
}
|
|
public function getFlashIdentifier(): string
|
|
{
|
|
return sprintf('"%s" book', $this->title);
|
|
}
|
|
}
|