mirror of
https://github.com/doctrine/orm.git
synced 2026-04-20 05:00:56 +02:00
16 lines
231 B
PHP
16 lines
231 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use Doctrine\ORM\Mapping\Column;
|
|
use Doctrine\ORM\Mapping\Entity;
|
|
|
|
#[Entity]
|
|
class Message
|
|
{
|
|
#[Column(options: ['default' => 'Hello World!'])]
|
|
private string $text;
|
|
}
|