DigiComp.Sequence/Classes/Domain/Model/SequenceEntry.php

29 lines
440 B
PHP
Raw Normal View History

2014-04-07 15:25:16 +02:00
<?php
declare(strict_types=1);
2014-04-07 15:25:16 +02:00
namespace DigiComp\Sequence\Domain\Model;
use Doctrine\ORM\Mapping as ORM;
2017-03-13 16:59:04 +01:00
use Neos\Flow\Annotations as Flow;
2016-06-24 19:40:43 +02:00
2014-04-07 15:25:16 +02:00
/**
2022-04-20 17:36:31 +02:00
* This class is only here to set up the table. We never create an instance of this class.
*
2014-04-07 15:25:16 +02:00
* @Flow\Entity
*/
2021-09-22 11:34:34 +02:00
class SequenceEntry
2016-06-24 19:40:43 +02:00
{
/**
2022-04-20 17:36:31 +02:00
* @ORM\Id
2021-08-26 10:50:00 +02:00
* @var string
2016-06-24 19:40:43 +02:00
*/
protected string $type;
2014-04-07 15:25:16 +02:00
2016-06-24 19:40:43 +02:00
/**
2022-04-20 17:36:31 +02:00
* @ORM\Id
2021-09-22 11:34:34 +02:00
* @var int
2017-03-13 16:59:04 +01:00
*/
2021-09-22 11:34:34 +02:00
protected int $number;
2016-06-24 19:40:43 +02:00
}