-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathBookDatePoint.php
More file actions
76 lines (64 loc) · 1.72 KB
/
BookDatePoint.php
File metadata and controls
76 lines (64 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
declare(strict_types=1);
/*
* This file is part of the Doctrine Behavioral Extensions package.
* (c) Gediminas Morkevicius <gediminas.morkevicius@gmail.com> http://www.gediminasm.org
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Gedmo\Tests\SoftDeleteable\Fixture\Entity;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use Symfony\Component\Clock\DatePoint;
/**
* @ORM\Entity
*
* @Gedmo\SoftDeleteable(fieldName="deletedAt")
*/
#[ORM\Entity]
#[Gedmo\SoftDeleteable(fieldName: 'deletedAt')]
class BookDatePoint
{
/**
* @var int|null
*
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
* @ORM\Column(type="integer")
*/
#[ORM\Id]
#[ORM\GeneratedValue(strategy: 'IDENTITY')]
#[ORM\Column(type: Types::INTEGER)]
private $id;
/**
* @ORM\Column(name="title", type="string")
*/
#[ORM\Column(name: 'title', type: Types::STRING)]
private ?string $title = null;
/**
* @ORM\Column(name="deletedAt", type="date_point", nullable=true)
*/
#[ORM\Column(name: 'deletedAt', type: 'date_point', nullable: true)]
private ?DatePoint $deletedAt = null;
public function getId(): ?int
{
return $this->id;
}
public function setTitle(?string $title): void
{
$this->title = $title;
}
public function getTitle(): ?string
{
return $this->title;
}
public function setDeletedAt(?DatePoint $deletedAt): void
{
$this->deletedAt = $deletedAt;
}
public function getDeletedAt(): ?DatePoint
{
return $this->deletedAt;
}
}