| Total Complexity | 5 |
| Total Lines | 57 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class AzureSyncState |
||
| 17 | { |
||
| 18 | use TimestampableTypedEntity; |
||
| 19 | |||
| 20 | public const USERS_DATALINK = 'users_datalink'; |
||
| 21 | public const USERGROUPS_DATALINK = 'usergroups_datalink'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var int |
||
| 25 | * |
||
| 26 | * @ORM\Column(name="id", type="integer") |
||
| 27 | * @ORM\Id() |
||
| 28 | * @ORM\GeneratedValue() |
||
| 29 | */ |
||
| 30 | private int $id = 0; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | * |
||
| 35 | * @ORM\Column(name="title", type="string") |
||
| 36 | */ |
||
| 37 | private string $title; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var string |
||
| 41 | * |
||
| 42 | * @ORM\Column(name="value", type="text") |
||
| 43 | */ |
||
| 44 | private string $value; |
||
| 45 | |||
| 46 | public function getId(): int |
||
| 47 | { |
||
| 48 | return $this->id; |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getTitle(): string |
||
| 52 | { |
||
| 53 | return $this->title; |
||
| 54 | } |
||
| 55 | |||
| 56 | public function setTitle(string $title): AzureSyncState |
||
| 61 | } |
||
| 62 | |||
| 63 | public function getValue(): string |
||
| 66 | } |
||
| 67 | |||
| 68 | public function setValue(string $value): AzureSyncState |
||
| 73 | } |
||
| 74 | } |
||
| 75 |