1 | <?php |
||
16 | class Policy extends Model |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $title; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $body; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $handle; |
||
32 | |||
33 | /** |
||
34 | * @var \DateTimeInterface |
||
35 | */ |
||
36 | protected $createdAt; |
||
37 | |||
38 | /** |
||
39 | * @var \DateTimeInterface |
||
40 | */ |
||
41 | protected $updatedAt; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | protected $url; |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getTitle() |
||
55 | |||
56 | /** |
||
57 | * @param string $title |
||
58 | * |
||
59 | * @return Policy |
||
60 | */ |
||
61 | public function setTitle($title) |
||
67 | |||
68 | /** |
||
69 | * @return string |
||
70 | */ |
||
71 | public function getBody() |
||
75 | |||
76 | /** |
||
77 | * @param string $body |
||
78 | * |
||
79 | * @return Policy |
||
80 | */ |
||
81 | public function setBody($body) |
||
87 | |||
88 | /** |
||
89 | * @return string |
||
90 | */ |
||
91 | public function getHandle() |
||
95 | |||
96 | /** |
||
97 | * @param string $handle |
||
98 | * |
||
99 | * @return Policy |
||
100 | */ |
||
101 | public function setHandle($handle) |
||
107 | |||
108 | /** |
||
109 | * @return \DateTimeInterface |
||
110 | */ |
||
111 | public function getCreatedAt() |
||
115 | |||
116 | /** |
||
117 | * @param \DateTimeInterface $createdAt |
||
118 | * |
||
119 | * @return Policy |
||
120 | */ |
||
121 | public function setCreatedAt($createdAt) |
||
127 | |||
128 | /** |
||
129 | * @return \DateTimeInterface |
||
130 | */ |
||
131 | public function getUpdatedAt() |
||
135 | |||
136 | /** |
||
137 | * @param \DateTimeInterface $updatedAt |
||
138 | * |
||
139 | * @return Policy |
||
140 | */ |
||
141 | public function setUpdatedAt($updatedAt) |
||
147 | |||
148 | /** |
||
149 | * @return string |
||
150 | */ |
||
151 | public function getUrl() |
||
155 | |||
156 | /** |
||
157 | * @param string $url |
||
158 | * |
||
159 | * @return Policy |
||
160 | */ |
||
161 | public function setUrl($url) |
||
167 | } |