Next major version 2 with PHP 8.1, Symfony 6, Tabler UI, 2FA ... (#2902)
This commit is contained in:
@@ -18,19 +18,14 @@ use JMS\Serializer\Annotation as Serializer;
|
||||
trait ColorTrait
|
||||
{
|
||||
/**
|
||||
* The assigned color in HTML hex format, eg. #dd1d00
|
||||
*
|
||||
* @var string|null
|
||||
*
|
||||
* @Serializer\Expose()
|
||||
* @Serializer\Groups({"Default"})
|
||||
*
|
||||
* @Exporter\Expose(label="label.color")
|
||||
*
|
||||
* @ORM\Column(name="color", type="string", length=7, nullable=true)
|
||||
* @Constraints\HexColor()
|
||||
* The assigned color in HTML hex format, e.g. #dd1d00
|
||||
*/
|
||||
private $color = null;
|
||||
#[ORM\Column(name: 'color', type: 'string', length: 7, nullable: true)]
|
||||
#[Serializer\Expose]
|
||||
#[Serializer\Groups(['Default'])]
|
||||
#[Exporter\Expose(label: 'color')]
|
||||
#[Constraints\HexColor]
|
||||
private ?string $color = null;
|
||||
|
||||
public function getColor(): ?string
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user