Passed
Push — master ( 8e6f35...45313f )
by Anthony
02:06
created
Entity/Page.php 1 patch
Indentation   +233 added lines, -233 removed lines patch added patch discarded remove patch
@@ -14,80 +14,80 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class Page
16 16
 {
17
-    /**
18
-     * @var integer
19
-     *
20
-     * @ORM\Column(name="id", type="integer", nullable=false, options={"unsigned"=true})
21
-     * @ORM\Id
22
-     * @ORM\GeneratedValue(strategy="IDENTITY")
23
-     */
24
-    private $id;
25
-
26
-    /**
27
-     * @var string
28
-     *
29
-     * @ORM\Column(name="guid", type="string", length=255, nullable=false)
30
-     */
31
-    private $guid;
32
-
33
-    /**
34
-     * @var string
35
-     *
36
-     * @ORM\Column(name="title_tag", type="string", length=70, nullable=true)
37
-     */
38
-    private $titleTag;
39
-
40
-    /**
41
-     * @var string
42
-     *
43
-     * @ORM\Column(name="description_tag", type="string", length=160, nullable=true)
44
-     */
45
-    private $descriptionTag;
46
-
47
-    /**
48
-     * @var string
49
-     *
50
-     * @ORM\Column(name="title", type="string", length=255, nullable=false)
51
-     */
52
-    private $title;
53
-
54
-    /**
55
-     * @var string
56
-     *
57
-     * @ORM\Column(name="content", type="text", nullable=true)
58
-     */
59
-    private $content;
60
-
61
-    /**
62
-     * @var integer
63
-     *
64
-     * @ORM\Column(name="active", type="integer", nullable=false)
65
-     */
66
-    private $active;
67
-
68
-    /**
69
-     * @var integer
70
-     *
71
-     * @ORM\Column(name="order", type="integer", nullable=false)
72
-     */
73
-    private $order;
74
-
75
-    /**
76
-     * @var integer
77
-     *
78
-     * @ORM\Column(name="displayed", type="integer", nullable=false)
79
-     */
80
-    private $displayed;
81
-
82
-    /**
83
-     * @var \Page
84
-     *
85
-     * @ORM\ManyToOne(targetEntity="Page")
86
-     * @ORM\JoinColumns({
87
-     *   @ORM\JoinColumn(name="parent", referencedColumnName="id")
88
-     * })
89
-     */
90
-    private $parent;
17
+				/**
18
+				 * @var integer
19
+				 *
20
+				 * @ORM\Column(name="id", type="integer", nullable=false, options={"unsigned"=true})
21
+				 * @ORM\Id
22
+				 * @ORM\GeneratedValue(strategy="IDENTITY")
23
+				 */
24
+				private $id;
25
+
26
+				/**
27
+				 * @var string
28
+				 *
29
+				 * @ORM\Column(name="guid", type="string", length=255, nullable=false)
30
+				 */
31
+				private $guid;
32
+
33
+				/**
34
+				 * @var string
35
+				 *
36
+				 * @ORM\Column(name="title_tag", type="string", length=70, nullable=true)
37
+				 */
38
+				private $titleTag;
39
+
40
+				/**
41
+				 * @var string
42
+				 *
43
+				 * @ORM\Column(name="description_tag", type="string", length=160, nullable=true)
44
+				 */
45
+				private $descriptionTag;
46
+
47
+				/**
48
+				 * @var string
49
+				 *
50
+				 * @ORM\Column(name="title", type="string", length=255, nullable=false)
51
+				 */
52
+				private $title;
53
+
54
+				/**
55
+				 * @var string
56
+				 *
57
+				 * @ORM\Column(name="content", type="text", nullable=true)
58
+				 */
59
+				private $content;
60
+
61
+				/**
62
+				 * @var integer
63
+				 *
64
+				 * @ORM\Column(name="active", type="integer", nullable=false)
65
+				 */
66
+				private $active;
67
+
68
+				/**
69
+				 * @var integer
70
+				 *
71
+				 * @ORM\Column(name="order", type="integer", nullable=false)
72
+				 */
73
+				private $order;
74
+
75
+				/**
76
+				 * @var integer
77
+				 *
78
+				 * @ORM\Column(name="displayed", type="integer", nullable=false)
79
+				 */
80
+				private $displayed;
81
+
82
+				/**
83
+				 * @var \Page
84
+				 *
85
+				 * @ORM\ManyToOne(targetEntity="Page")
86
+				 * @ORM\JoinColumns({
87
+				 *   @ORM\JoinColumn(name="parent", referencedColumnName="id")
88
+				 * })
89
+				 */
90
+				private $parent;
91 91
 	
92 92
 	/**
93 93
 	 * @var \DateTime
@@ -105,165 +105,165 @@  discard block
 block discarded – undo
105 105
 	 */
106 106
 	private $updateDate;
107 107
 
108
-    /**
109
-     * @return int
110
-     */
111
-    public function getId()
112
-    {
113
-        return $this->id;
114
-    }
115
-
116
-    /**
117
-     * @param int $id
118
-     */
119
-    public function setId($id)
120
-    {
121
-        $this->id = $id;
122
-    }
123
-
124
-    /**
125
-     * @return string
126
-     */
127
-    public function getGuid()
128
-    {
129
-        return $this->guid;
130
-    }
131
-
132
-    /**
133
-     * @param string $guid
134
-     */
135
-    public function setGuid($guid)
136
-    {
137
-        $this->guid = $guid;
138
-    }
139
-
140
-    /**
141
-     * @return string
142
-     */
143
-    public function getTitleTag()
144
-    {
145
-        return $this->titleTag;
146
-    }
147
-
148
-    /**
149
-     * @param string $titleTag
150
-     */
151
-    public function setTitleTag($titleTag)
152
-    {
153
-        $this->titleTag = $titleTag;
154
-    }
155
-
156
-    /**
157
-     * @return string
158
-     */
159
-    public function getDescriptionTag()
160
-    {
161
-        return $this->descriptionTag;
162
-    }
163
-
164
-    /**
165
-     * @param string $descriptionTag
166
-     */
167
-    public function setDescriptionTag($descriptionTag)
168
-    {
169
-        $this->descriptionTag = $descriptionTag;
170
-    }
171
-
172
-    /**
173
-     * @return string
174
-     */
175
-    public function getTitle()
176
-    {
177
-        return $this->title;
178
-    }
179
-
180
-    /**
181
-     * @param string $title
182
-     */
183
-    public function setTitle($title)
184
-    {
185
-        $this->title = $title;
186
-    }
187
-
188
-    /**
189
-     * @return string
190
-     */
191
-    public function getContent()
192
-    {
193
-        return $this->content;
194
-    }
195
-
196
-    /**
197
-     * @param string $content
198
-     */
199
-    public function setContent($content)
200
-    {
201
-        $this->content = $content;
202
-    }
203
-
204
-    /**
205
-     * @return int
206
-     */
207
-    public function getActive()
208
-    {
209
-        return $this->active;
210
-    }
211
-
212
-    /**
213
-     * @param int $active
214
-     */
215
-    public function setActive($active)
216
-    {
217
-        $this->active = $active;
218
-    }
219
-
220
-    /**
221
-     * @return int
222
-     */
223
-    public function getOrder()
224
-    {
225
-        return $this->order;
226
-    }
227
-
228
-    /**
229
-     * @param int $order
230
-     */
231
-    public function setOrder($order)
232
-    {
233
-        $this->order = $order;
234
-    }
235
-
236
-    /**
237
-     * @return int
238
-     */
239
-    public function getDisplayed()
240
-    {
241
-        return $this->displayed;
242
-    }
243
-
244
-    /**
245
-     * @param int $displayed
246
-     */
247
-    public function setDisplayed($displayed)
248
-    {
249
-        $this->displayed = $displayed;
250
-    }
251
-
252
-    /**
253
-     * @return \Page
254
-     */
255
-    public function getParent()
256
-    {
257
-        return $this->parent;
258
-    }
259
-
260
-    /**
261
-     * @param \Page $parent
262
-     */
263
-    public function setParent($parent)
264
-    {
265
-        $this->parent = $parent;
266
-    }
108
+				/**
109
+				 * @return int
110
+				 */
111
+				public function getId()
112
+				{
113
+								return $this->id;
114
+				}
115
+
116
+				/**
117
+				 * @param int $id
118
+				 */
119
+				public function setId($id)
120
+				{
121
+								$this->id = $id;
122
+				}
123
+
124
+				/**
125
+				 * @return string
126
+				 */
127
+				public function getGuid()
128
+				{
129
+								return $this->guid;
130
+				}
131
+
132
+				/**
133
+				 * @param string $guid
134
+				 */
135
+				public function setGuid($guid)
136
+				{
137
+								$this->guid = $guid;
138
+				}
139
+
140
+				/**
141
+				 * @return string
142
+				 */
143
+				public function getTitleTag()
144
+				{
145
+								return $this->titleTag;
146
+				}
147
+
148
+				/**
149
+				 * @param string $titleTag
150
+				 */
151
+				public function setTitleTag($titleTag)
152
+				{
153
+								$this->titleTag = $titleTag;
154
+				}
155
+
156
+				/**
157
+				 * @return string
158
+				 */
159
+				public function getDescriptionTag()
160
+				{
161
+								return $this->descriptionTag;
162
+				}
163
+
164
+				/**
165
+				 * @param string $descriptionTag
166
+				 */
167
+				public function setDescriptionTag($descriptionTag)
168
+				{
169
+								$this->descriptionTag = $descriptionTag;
170
+				}
171
+
172
+				/**
173
+				 * @return string
174
+				 */
175
+				public function getTitle()
176
+				{
177
+								return $this->title;
178
+				}
179
+
180
+				/**
181
+				 * @param string $title
182
+				 */
183
+				public function setTitle($title)
184
+				{
185
+								$this->title = $title;
186
+				}
187
+
188
+				/**
189
+				 * @return string
190
+				 */
191
+				public function getContent()
192
+				{
193
+								return $this->content;
194
+				}
195
+
196
+				/**
197
+				 * @param string $content
198
+				 */
199
+				public function setContent($content)
200
+				{
201
+								$this->content = $content;
202
+				}
203
+
204
+				/**
205
+				 * @return int
206
+				 */
207
+				public function getActive()
208
+				{
209
+								return $this->active;
210
+				}
211
+
212
+				/**
213
+				 * @param int $active
214
+				 */
215
+				public function setActive($active)
216
+				{
217
+								$this->active = $active;
218
+				}
219
+
220
+				/**
221
+				 * @return int
222
+				 */
223
+				public function getOrder()
224
+				{
225
+								return $this->order;
226
+				}
227
+
228
+				/**
229
+				 * @param int $order
230
+				 */
231
+				public function setOrder($order)
232
+				{
233
+								$this->order = $order;
234
+				}
235
+
236
+				/**
237
+				 * @return int
238
+				 */
239
+				public function getDisplayed()
240
+				{
241
+								return $this->displayed;
242
+				}
243
+
244
+				/**
245
+				 * @param int $displayed
246
+				 */
247
+				public function setDisplayed($displayed)
248
+				{
249
+								$this->displayed = $displayed;
250
+				}
251
+
252
+				/**
253
+				 * @return \Page
254
+				 */
255
+				public function getParent()
256
+				{
257
+								return $this->parent;
258
+				}
259
+
260
+				/**
261
+				 * @param \Page $parent
262
+				 */
263
+				public function setParent($parent)
264
+				{
265
+								$this->parent = $parent;
266
+				}
267 267
 	
268 268
 	/**
269 269
 	 * @return \DateTime
Please login to merge, or discard this patch.
Entity/UserLogs.php 1 patch
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -13,26 +13,26 @@  discard block
 block discarded – undo
13 13
  */
14 14
 class UserLogs
15 15
 {
16
-    /**
17
-     * @var integer
18
-     *
19
-     * @ORM\Column(name="id", type="integer", nullable=false, options={"unsigned"=true})
20
-     * @ORM\Id
21
-     * @ORM\GeneratedValue(strategy="NONE")
22
-     */
23
-    private $id;
16
+				/**
17
+				 * @var integer
18
+				 *
19
+				 * @ORM\Column(name="id", type="integer", nullable=false, options={"unsigned"=true})
20
+				 * @ORM\Id
21
+				 * @ORM\GeneratedValue(strategy="NONE")
22
+				 */
23
+				private $id;
24 24
 
25
-    /**
26
-     * @var \User
27
-     *
28
-     * @ORM\Id
29
-     * @ORM\GeneratedValue(strategy="NONE")
30
-     * @ORM\OneToOne(targetEntity="User")
31
-     * @ORM\JoinColumns({
32
-     *   @ORM\JoinColumn(name="user_id", referencedColumnName="id")
33
-     * })
34
-     */
35
-    private $user;
25
+				/**
26
+				 * @var \User
27
+				 *
28
+				 * @ORM\Id
29
+				 * @ORM\GeneratedValue(strategy="NONE")
30
+				 * @ORM\OneToOne(targetEntity="User")
31
+				 * @ORM\JoinColumns({
32
+				 *   @ORM\JoinColumn(name="user_id", referencedColumnName="id")
33
+				 * })
34
+				 */
35
+				private $user;
36 36
 	
37 37
 	/**
38 38
 	 * @var \DateTime
@@ -50,37 +50,37 @@  discard block
 block discarded – undo
50 50
 	 */
51 51
 	private $updateDate;
52 52
 
53
-    /**
54
-     * @return int
55
-     */
56
-    public function getId()
57
-    {
58
-        return $this->id;
59
-    }
53
+				/**
54
+				 * @return int
55
+				 */
56
+				public function getId()
57
+				{
58
+								return $this->id;
59
+				}
60 60
 
61
-    /**
62
-     * @param int $id
63
-     */
64
-    public function setId($id)
65
-    {
66
-        $this->id = $id;
67
-    }
61
+				/**
62
+				 * @param int $id
63
+				 */
64
+				public function setId($id)
65
+				{
66
+								$this->id = $id;
67
+				}
68 68
 
69
-    /**
70
-     * @return \User
71
-     */
72
-    public function getUser()
73
-    {
74
-        return $this->user;
75
-    }
69
+				/**
70
+				 * @return \User
71
+				 */
72
+				public function getUser()
73
+				{
74
+								return $this->user;
75
+				}
76 76
 
77
-    /**
78
-     * @param \User $user
79
-     */
80
-    public function setUser($user)
81
-    {
82
-        $this->user = $user;
83
-    }
77
+				/**
78
+				 * @param \User $user
79
+				 */
80
+				public function setUser($user)
81
+				{
82
+								$this->user = $user;
83
+				}
84 84
 	
85 85
 	/**
86 86
 	 * @return \DateTime
Please login to merge, or discard this patch.
Entity/User.php 1 patch
Indentation   +238 added lines, -238 removed lines patch added patch discarded remove patch
@@ -14,21 +14,21 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class User
16 16
 {
17
-    /**
18
-     * @var integer
19
-     *
20
-     * @ORM\Column(name="id", type="integer", nullable=false, options={"unsigned"=true})
21
-     * @ORM\Id
22
-     * @ORM\GeneratedValue(strategy="IDENTITY")
23
-     */
24
-    private $id;
25
-
26
-    /**
27
-     * @var string
28
-     *
29
-     * @ORM\Column(name="guid", type="string", length=255, nullable=false)
30
-     */
31
-    private $guid;
17
+				/**
18
+				 * @var integer
19
+				 *
20
+				 * @ORM\Column(name="id", type="integer", nullable=false, options={"unsigned"=true})
21
+				 * @ORM\Id
22
+				 * @ORM\GeneratedValue(strategy="IDENTITY")
23
+				 */
24
+				private $id;
25
+
26
+				/**
27
+				 * @var string
28
+				 *
29
+				 * @ORM\Column(name="guid", type="string", length=255, nullable=false)
30
+				 */
31
+				private $guid;
32 32
 	
33 33
 	/**
34 34
 	 * @var AccessRight
@@ -36,56 +36,56 @@  discard block
 block discarded – undo
36 36
 	 * @ORM\ManyToOne(targetEntity="Ribs\RibsAdminBundle\Entity\AccessRight", inversedBy="users")
37 37
 	 * @ORM\JoinColumn(name="id_access_right", referencedColumnName="id", nullable=true)
38 38
 	 */
39
-    private $accessRightList;
40
-
41
-    /**
42
-     * @var string
43
-     *
44
-     * @ORM\Column(name="firstname", type="string", length=255, nullable=false)
45
-     */
46
-    private $firstname;
47
-
48
-    /**
49
-     * @var string
50
-     *
51
-     * @ORM\Column(name="lastname", type="string", length=255, nullable=false)
52
-     */
53
-    private $lastname;
54
-
55
-    /**
56
-     * @var string
57
-     *
58
-     * @ORM\Column(name="adress", type="string", length=255, nullable=true)
59
-     */
60
-    private $adress;
61
-
62
-    /**
63
-     * @var string
64
-     *
65
-     * @ORM\Column(name="postal_code", type="string", length=100, nullable=true)
66
-     */
67
-    private $postalCode;
68
-
69
-    /**
70
-     * @var string
71
-     *
72
-     * @ORM\Column(name="country", type="string", length=100, nullable=true)
73
-     */
74
-    private $country;
75
-
76
-    /**
77
-     * @var string
78
-     *
79
-     * @ORM\Column(name="state", type="string", length=255, nullable=true)
80
-     */
81
-    private $state;
82
-
83
-    /**
84
-     * @var string
85
-     *
86
-     * @ORM\Column(name="access_rights", type="text", nullable=true)
87
-     */
88
-    private $accessRights;
39
+				private $accessRightList;
40
+
41
+				/**
42
+				 * @var string
43
+				 *
44
+				 * @ORM\Column(name="firstname", type="string", length=255, nullable=false)
45
+				 */
46
+				private $firstname;
47
+
48
+				/**
49
+				 * @var string
50
+				 *
51
+				 * @ORM\Column(name="lastname", type="string", length=255, nullable=false)
52
+				 */
53
+				private $lastname;
54
+
55
+				/**
56
+				 * @var string
57
+				 *
58
+				 * @ORM\Column(name="adress", type="string", length=255, nullable=true)
59
+				 */
60
+				private $adress;
61
+
62
+				/**
63
+				 * @var string
64
+				 *
65
+				 * @ORM\Column(name="postal_code", type="string", length=100, nullable=true)
66
+				 */
67
+				private $postalCode;
68
+
69
+				/**
70
+				 * @var string
71
+				 *
72
+				 * @ORM\Column(name="country", type="string", length=100, nullable=true)
73
+				 */
74
+				private $country;
75
+
76
+				/**
77
+				 * @var string
78
+				 *
79
+				 * @ORM\Column(name="state", type="string", length=255, nullable=true)
80
+				 */
81
+				private $state;
82
+
83
+				/**
84
+				 * @var string
85
+				 *
86
+				 * @ORM\Column(name="access_rights", type="text", nullable=true)
87
+				 */
88
+				private $accessRights;
89 89
 	
90 90
 	/**
91 91
 	 * @var boolean
@@ -110,37 +110,37 @@  discard block
 block discarded – undo
110 110
 	 */
111 111
 	private $updateDate;
112 112
 
113
-    /**
114
-     * @return int
115
-     */
116
-    public function getId()
117
-    {
118
-        return $this->id;
119
-    }
120
-
121
-    /**
122
-     * @param int $id
123
-     */
124
-    public function setId($id)
125
-    {
126
-        $this->id = $id;
127
-    }
128
-
129
-    /**
130
-     * @return string
131
-     */
132
-    public function getGuid()
133
-    {
134
-        return $this->guid;
135
-    }
136
-
137
-    /**
138
-     * @param string $guid
139
-     */
140
-    public function setGuid($guid)
141
-    {
142
-        $this->guid = $guid;
143
-    }
113
+				/**
114
+				 * @return int
115
+				 */
116
+				public function getId()
117
+				{
118
+								return $this->id;
119
+				}
120
+
121
+				/**
122
+				 * @param int $id
123
+				 */
124
+				public function setId($id)
125
+				{
126
+								$this->id = $id;
127
+				}
128
+
129
+				/**
130
+				 * @return string
131
+				 */
132
+				public function getGuid()
133
+				{
134
+								return $this->guid;
135
+				}
136
+
137
+				/**
138
+				 * @param string $guid
139
+				 */
140
+				public function setGuid($guid)
141
+				{
142
+								$this->guid = $guid;
143
+				}
144 144
 	
145 145
 	/**
146 146
 	 * @return AccessRight
@@ -158,133 +158,133 @@  discard block
 block discarded – undo
158 158
 		$this->accessRightList = $accessRightList;
159 159
 	}
160 160
 
161
-    /**
162
-     * @return string
163
-     */
164
-    public function getFirstname()
165
-    {
166
-        return $this->firstname;
167
-    }
168
-
169
-    /**
170
-     * @param string $firstname
171
-     */
172
-    public function setFirstname($firstname)
173
-    {
174
-        $this->firstname = $firstname;
175
-    }
176
-
177
-    /**
178
-     * @return string
179
-     */
180
-    public function getLastname()
181
-    {
182
-        return $this->lastname;
183
-    }
184
-
185
-    /**
186
-     * @param string $lastname
187
-     */
188
-    public function setLastname($lastname)
189
-    {
190
-        $this->lastname = $lastname;
191
-    }
192
-
193
-    /**
194
-     * @return string
195
-     */
196
-    public function getAdress()
197
-    {
198
-        return $this->adress;
199
-    }
200
-
201
-    /**
202
-     * @param string $adress
203
-     */
204
-    public function setAdress($adress)
205
-    {
206
-        $this->adress = $adress;
207
-    }
208
-
209
-    /**
210
-     * @return string
211
-     */
212
-    public function getPostalCode()
213
-    {
214
-        return $this->postalCode;
215
-    }
216
-
217
-    /**
218
-     * @param string $postalCode
219
-     */
220
-    public function setPostalCode($postalCode)
221
-    {
222
-        $this->postalCode = $postalCode;
223
-    }
224
-
225
-    /**
226
-     * @return string
227
-     */
228
-    public function getCountry()
229
-    {
230
-        return $this->country;
231
-    }
232
-
233
-    /**
234
-     * @param string $country
235
-     */
236
-    public function setCountry($country)
237
-    {
238
-        $this->country = $country;
239
-    }
240
-
241
-    /**
242
-     * @return string
243
-     */
244
-    public function getState()
245
-    {
246
-        return $this->state;
247
-    }
248
-
249
-    /**
250
-     * @param string $state
251
-     */
252
-    public function setState($state)
253
-    {
254
-        $this->state = $state;
255
-    }
256
-
257
-    /**
258
-     * @return string
259
-     */
260
-    public function getAccessRights()
261
-    {
262
-        return $this->accessRights;
263
-    }
264
-
265
-    /**
266
-     * @param string $accessRights
267
-     */
268
-    public function setAccessRights($accessRights)
269
-    {
270
-        $this->accessRights = $accessRights;
271
-    }
272
-
273
-    /**
274
-     * @return \DateTime
275
-     */
276
-    public function getCreationDate()
277
-    {
278
-        return $this->creationDate;
279
-    }
280
-
281
-    /**
282
-     * @param \DateTime $creationDate
283
-     */
284
-    public function setCreationDate($creationDate)
285
-    {
286
-        $this->creationDate = $creationDate;
287
-    }
161
+				/**
162
+				 * @return string
163
+				 */
164
+				public function getFirstname()
165
+				{
166
+								return $this->firstname;
167
+				}
168
+
169
+				/**
170
+				 * @param string $firstname
171
+				 */
172
+				public function setFirstname($firstname)
173
+				{
174
+								$this->firstname = $firstname;
175
+				}
176
+
177
+				/**
178
+				 * @return string
179
+				 */
180
+				public function getLastname()
181
+				{
182
+								return $this->lastname;
183
+				}
184
+
185
+				/**
186
+				 * @param string $lastname
187
+				 */
188
+				public function setLastname($lastname)
189
+				{
190
+								$this->lastname = $lastname;
191
+				}
192
+
193
+				/**
194
+				 * @return string
195
+				 */
196
+				public function getAdress()
197
+				{
198
+								return $this->adress;
199
+				}
200
+
201
+				/**
202
+				 * @param string $adress
203
+				 */
204
+				public function setAdress($adress)
205
+				{
206
+								$this->adress = $adress;
207
+				}
208
+
209
+				/**
210
+				 * @return string
211
+				 */
212
+				public function getPostalCode()
213
+				{
214
+								return $this->postalCode;
215
+				}
216
+
217
+				/**
218
+				 * @param string $postalCode
219
+				 */
220
+				public function setPostalCode($postalCode)
221
+				{
222
+								$this->postalCode = $postalCode;
223
+				}
224
+
225
+				/**
226
+				 * @return string
227
+				 */
228
+				public function getCountry()
229
+				{
230
+								return $this->country;
231
+				}
232
+
233
+				/**
234
+				 * @param string $country
235
+				 */
236
+				public function setCountry($country)
237
+				{
238
+								$this->country = $country;
239
+				}
240
+
241
+				/**
242
+				 * @return string
243
+				 */
244
+				public function getState()
245
+				{
246
+								return $this->state;
247
+				}
248
+
249
+				/**
250
+				 * @param string $state
251
+				 */
252
+				public function setState($state)
253
+				{
254
+								$this->state = $state;
255
+				}
256
+
257
+				/**
258
+				 * @return string
259
+				 */
260
+				public function getAccessRights()
261
+				{
262
+								return $this->accessRights;
263
+				}
264
+
265
+				/**
266
+				 * @param string $accessRights
267
+				 */
268
+				public function setAccessRights($accessRights)
269
+				{
270
+								$this->accessRights = $accessRights;
271
+				}
272
+
273
+				/**
274
+				 * @return \DateTime
275
+				 */
276
+				public function getCreationDate()
277
+				{
278
+								return $this->creationDate;
279
+				}
280
+
281
+				/**
282
+				 * @param \DateTime $creationDate
283
+				 */
284
+				public function setCreationDate($creationDate)
285
+				{
286
+								$this->creationDate = $creationDate;
287
+				}
288 288
 	
289 289
 	/**
290 290
 	 * @return boolean
@@ -302,21 +302,21 @@  discard block
 block discarded – undo
302 302
 		$this->archived = $archived;
303 303
 	}
304 304
 
305
-    /**
306
-     * @return \DateTime
307
-     */
308
-    public function getUpdateDate()
309
-    {
310
-        return $this->updateDate;
311
-    }
312
-
313
-    /**
314
-     * @param \DateTime $updateDate
315
-     */
316
-    public function setUpdateDate($updateDate)
317
-    {
318
-        $this->updateDate = $updateDate;
319
-    }
305
+				/**
306
+				 * @return \DateTime
307
+				 */
308
+				public function getUpdateDate()
309
+				{
310
+								return $this->updateDate;
311
+				}
312
+
313
+				/**
314
+				 * @param \DateTime $updateDate
315
+				 */
316
+				public function setUpdateDate($updateDate)
317
+				{
318
+								$this->updateDate = $updateDate;
319
+				}
320 320
 
321 321
 
322 322
 }
Please login to merge, or discard this patch.