mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-15 17:58:16 +02:00
24 lines
424 B
PHP
24 lines
424 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Primitive\Text;
|
|
|
|
use App\Entity\Source\Primitive\AbstractPrimitiveSource;
|
|
use App\Attribut\TextAttribut;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
* @ORM\Entity
|
|
*/
|
|
class TextSource extends AbstractPrimitiveSource implements TextSourceInterface
|
|
{
|
|
use TextAttribut;
|
|
|
|
/**
|
|
* @ORM\Column(type="string")
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $text;
|
|
}
|