Passed
Push — master ( 582587...3b42e9 )
by Anthony
04:10 queued 11s
created
Tests/Controller/DefaultControllerTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,12 +6,12 @@
 block discarded – undo
6 6
 
7 7
 class DefaultControllerTest extends WebTestCase
8 8
 {
9
-    public function testIndex()
10
-    {
11
-        $client = static::createClient();
9
+				public function testIndex()
10
+				{
11
+								$client = static::createClient();
12 12
 
13
-        $crawler = $client->request('GET', '/');
13
+								$crawler = $client->request('GET', '/');
14 14
 
15
-        $this->assertContains('Hello World', $client->getResponse()->getContent());
16
-    }
15
+								$this->assertContains('Hello World', $client->getResponse()->getContent());
16
+				}
17 17
 }
Please login to merge, or discard this patch.
DependencyInjection/RibsAdminExtension.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -14,15 +14,15 @@
 block discarded – undo
14 14
  */
15 15
 class RibsAdminExtension extends Extension
16 16
 {
17
-    /**
18
-     * {@inheritdoc}
19
-     */
20
-    public function load(array $configs, ContainerBuilder $container)
21
-    {
22
-        $configuration = new Configuration();
23
-        $this->processConfiguration($configuration, $configs);
17
+				/**
18
+				 * {@inheritdoc}
19
+				 */
20
+				public function load(array $configs, ContainerBuilder $container)
21
+				{
22
+								$configuration = new Configuration();
23
+								$this->processConfiguration($configuration, $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
26
-        $loader->load('services.yml');
27
-    }
25
+								$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
26
+								$loader->load('services.yml');
27
+				}
28 28
 }
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -12,18 +12,18 @@
 block discarded – undo
12 12
  */
13 13
 class Configuration implements ConfigurationInterface
14 14
 {
15
-    /**
16
-     * {@inheritdoc}
17
-     */
18
-    public function getConfigTreeBuilder()
19
-    {
20
-        $treeBuilder = new TreeBuilder();
21
-        $treeBuilder->root('ribs_admin');
15
+				/**
16
+				 * {@inheritdoc}
17
+				 */
18
+				public function getConfigTreeBuilder()
19
+				{
20
+								$treeBuilder = new TreeBuilder();
21
+								$treeBuilder->root('ribs_admin');
22 22
 		
23
-        // Here you should define the parameters that are allowed to
24
-        // configure your bundle. See the documentation linked above for
25
-        // more information on that topic.
23
+								// Here you should define the parameters that are allowed to
24
+								// configure your bundle. See the documentation linked above for
25
+								// more information on that topic.
26 26
 
27
-        return $treeBuilder;
28
-    }
27
+								return $treeBuilder;
28
+				}
29 29
 }
Please login to merge, or discard this patch.
Form/AccessRight.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@
 block discarded – undo
19 19
 				'label_attr' => [
20 20
 					'class' => 'label'
21 21
 				],
22
-                'attr' => [],
23
-                'required' => true
24
-            ])
25
-            ->add('submit', SubmitType::class, [
22
+																'attr' => [],
23
+																'required' => true
24
+												])
25
+												->add('submit', SubmitType::class, [
26 26
 		'label' => 'Validate',
27 27
 		'attr' => []
28 28
 	]);
29
-    }
29
+				}
30 30
 	
31 31
 	public function configureOptions(OptionsResolver $resolver)
32 32
 	{
Please login to merge, or discard this patch.
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   +239 added lines, -239 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,63 +36,63 @@  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;
39
+				private $accessRightList;
40 40
 	
41 41
 	/**
42 42
 	 * @var boolean
43 43
 	 *
44 44
 	 * @ORM\Column(name="admin", type="boolean", nullable=false, options={"default": false})
45 45
 	 */
46
-    private $admin;
47
-
48
-    /**
49
-     * @var string
50
-     *
51
-     * @ORM\Column(name="firstname", type="string", length=255, nullable=false)
52
-     */
53
-    private $firstname;
54
-
55
-    /**
56
-     * @var string
57
-     *
58
-     * @ORM\Column(name="lastname", type="string", length=255, nullable=false)
59
-     */
60
-    private $lastname;
61
-
62
-    /**
63
-     * @var string
64
-     *
65
-     * @ORM\Column(name="adress", type="string", length=255, nullable=true)
66
-     */
67
-    private $adress;
68
-
69
-    /**
70
-     * @var string
71
-     *
72
-     * @ORM\Column(name="postal_code", type="string", length=100, nullable=true)
73
-     */
74
-    private $postalCode;
75
-
76
-    /**
77
-     * @var string
78
-     *
79
-     * @ORM\Column(name="country", type="string", length=100, nullable=true)
80
-     */
81
-    private $country;
82
-
83
-    /**
84
-     * @var string
85
-     *
86
-     * @ORM\Column(name="state", type="string", length=255, nullable=true)
87
-     */
88
-    private $state;
89
-
90
-    /**
91
-     * @var string
92
-     *
93
-     * @ORM\Column(name="access_rights", type="text", nullable=true)
94
-     */
95
-    private $accessRights;
46
+				private $admin;
47
+
48
+				/**
49
+				 * @var string
50
+				 *
51
+				 * @ORM\Column(name="firstname", type="string", length=255, nullable=false)
52
+				 */
53
+				private $firstname;
54
+
55
+				/**
56
+				 * @var string
57
+				 *
58
+				 * @ORM\Column(name="lastname", type="string", length=255, nullable=false)
59
+				 */
60
+				private $lastname;
61
+
62
+				/**
63
+				 * @var string
64
+				 *
65
+				 * @ORM\Column(name="adress", type="string", length=255, nullable=true)
66
+				 */
67
+				private $adress;
68
+
69
+				/**
70
+				 * @var string
71
+				 *
72
+				 * @ORM\Column(name="postal_code", type="string", length=100, nullable=true)
73
+				 */
74
+				private $postalCode;
75
+
76
+				/**
77
+				 * @var string
78
+				 *
79
+				 * @ORM\Column(name="country", type="string", length=100, nullable=true)
80
+				 */
81
+				private $country;
82
+
83
+				/**
84
+				 * @var string
85
+				 *
86
+				 * @ORM\Column(name="state", type="string", length=255, nullable=true)
87
+				 */
88
+				private $state;
89
+
90
+				/**
91
+				 * @var string
92
+				 *
93
+				 * @ORM\Column(name="access_rights", type="text", nullable=true)
94
+				 */
95
+				private $accessRights;
96 96
 	
97 97
 	/**
98 98
 	 * @var boolean
@@ -117,37 +117,37 @@  discard block
 block discarded – undo
117 117
 	 */
118 118
 	private $updateDate;
119 119
 
120
-    /**
121
-     * @return int
122
-     */
123
-    public function getId()
124
-    {
125
-        return $this->id;
126
-    }
127
-
128
-    /**
129
-     * @param int $id
130
-     */
131
-    public function setId($id)
132
-    {
133
-        $this->id = $id;
134
-    }
135
-
136
-    /**
137
-     * @return string
138
-     */
139
-    public function getGuid()
140
-    {
141
-        return $this->guid;
142
-    }
143
-
144
-    /**
145
-     * @param string $guid
146
-     */
147
-    public function setGuid($guid)
148
-    {
149
-        $this->guid = $guid;
150
-    }
120
+				/**
121
+				 * @return int
122
+				 */
123
+				public function getId()
124
+				{
125
+								return $this->id;
126
+				}
127
+
128
+				/**
129
+				 * @param int $id
130
+				 */
131
+				public function setId($id)
132
+				{
133
+								$this->id = $id;
134
+				}
135
+
136
+				/**
137
+				 * @return string
138
+				 */
139
+				public function getGuid()
140
+				{
141
+								return $this->guid;
142
+				}
143
+
144
+				/**
145
+				 * @param string $guid
146
+				 */
147
+				public function setGuid($guid)
148
+				{
149
+								$this->guid = $guid;
150
+				}
151 151
 	
152 152
 	/**
153 153
 	 * @return AccessRight
@@ -181,133 +181,133 @@  discard block
 block discarded – undo
181 181
 		$this->admin = $admin;
182 182
 	}
183 183
 
184
-    /**
185
-     * @return string
186
-     */
187
-    public function getFirstname()
188
-    {
189
-        return $this->firstname;
190
-    }
191
-
192
-    /**
193
-     * @param string $firstname
194
-     */
195
-    public function setFirstname($firstname)
196
-    {
197
-        $this->firstname = $firstname;
198
-    }
199
-
200
-    /**
201
-     * @return string
202
-     */
203
-    public function getLastname()
204
-    {
205
-        return $this->lastname;
206
-    }
207
-
208
-    /**
209
-     * @param string $lastname
210
-     */
211
-    public function setLastname($lastname)
212
-    {
213
-        $this->lastname = $lastname;
214
-    }
215
-
216
-    /**
217
-     * @return string
218
-     */
219
-    public function getAdress()
220
-    {
221
-        return $this->adress;
222
-    }
223
-
224
-    /**
225
-     * @param string $adress
226
-     */
227
-    public function setAdress($adress)
228
-    {
229
-        $this->adress = $adress;
230
-    }
231
-
232
-    /**
233
-     * @return string
234
-     */
235
-    public function getPostalCode()
236
-    {
237
-        return $this->postalCode;
238
-    }
239
-
240
-    /**
241
-     * @param string $postalCode
242
-     */
243
-    public function setPostalCode($postalCode)
244
-    {
245
-        $this->postalCode = $postalCode;
246
-    }
247
-
248
-    /**
249
-     * @return string
250
-     */
251
-    public function getCountry()
252
-    {
253
-        return $this->country;
254
-    }
255
-
256
-    /**
257
-     * @param string $country
258
-     */
259
-    public function setCountry($country)
260
-    {
261
-        $this->country = $country;
262
-    }
263
-
264
-    /**
265
-     * @return string
266
-     */
267
-    public function getState()
268
-    {
269
-        return $this->state;
270
-    }
271
-
272
-    /**
273
-     * @param string $state
274
-     */
275
-    public function setState($state)
276
-    {
277
-        $this->state = $state;
278
-    }
279
-
280
-    /**
281
-     * @return string
282
-     */
283
-    public function getAccessRights()
284
-    {
285
-        return $this->accessRights;
286
-    }
287
-
288
-    /**
289
-     * @param string $accessRights
290
-     */
291
-    public function setAccessRights($accessRights)
292
-    {
293
-        $this->accessRights = $accessRights;
294
-    }
295
-
296
-    /**
297
-     * @return \DateTime
298
-     */
299
-    public function getCreationDate()
300
-    {
301
-        return $this->creationDate;
302
-    }
303
-
304
-    /**
305
-     * @param \DateTime $creationDate
306
-     */
307
-    public function setCreationDate($creationDate)
308
-    {
309
-        $this->creationDate = $creationDate;
310
-    }
184
+				/**
185
+				 * @return string
186
+				 */
187
+				public function getFirstname()
188
+				{
189
+								return $this->firstname;
190
+				}
191
+
192
+				/**
193
+				 * @param string $firstname
194
+				 */
195
+				public function setFirstname($firstname)
196
+				{
197
+								$this->firstname = $firstname;
198
+				}
199
+
200
+				/**
201
+				 * @return string
202
+				 */
203
+				public function getLastname()
204
+				{
205
+								return $this->lastname;
206
+				}
207
+
208
+				/**
209
+				 * @param string $lastname
210
+				 */
211
+				public function setLastname($lastname)
212
+				{
213
+								$this->lastname = $lastname;
214
+				}
215
+
216
+				/**
217
+				 * @return string
218
+				 */
219
+				public function getAdress()
220
+				{
221
+								return $this->adress;
222
+				}
223
+
224
+				/**
225
+				 * @param string $adress
226
+				 */
227
+				public function setAdress($adress)
228
+				{
229
+								$this->adress = $adress;
230
+				}
231
+
232
+				/**
233
+				 * @return string
234
+				 */
235
+				public function getPostalCode()
236
+				{
237
+								return $this->postalCode;
238
+				}
239
+
240
+				/**
241
+				 * @param string $postalCode
242
+				 */
243
+				public function setPostalCode($postalCode)
244
+				{
245
+								$this->postalCode = $postalCode;
246
+				}
247
+
248
+				/**
249
+				 * @return string
250
+				 */
251
+				public function getCountry()
252
+				{
253
+								return $this->country;
254
+				}
255
+
256
+				/**
257
+				 * @param string $country
258
+				 */
259
+				public function setCountry($country)
260
+				{
261
+								$this->country = $country;
262
+				}
263
+
264
+				/**
265
+				 * @return string
266
+				 */
267
+				public function getState()
268
+				{
269
+								return $this->state;
270
+				}
271
+
272
+				/**
273
+				 * @param string $state
274
+				 */
275
+				public function setState($state)
276
+				{
277
+								$this->state = $state;
278
+				}
279
+
280
+				/**
281
+				 * @return string
282
+				 */
283
+				public function getAccessRights()
284
+				{
285
+								return $this->accessRights;
286
+				}
287
+
288
+				/**
289
+				 * @param string $accessRights
290
+				 */
291
+				public function setAccessRights($accessRights)
292
+				{
293
+								$this->accessRights = $accessRights;
294
+				}
295
+
296
+				/**
297
+				 * @return \DateTime
298
+				 */
299
+				public function getCreationDate()
300
+				{
301
+								return $this->creationDate;
302
+				}
303
+
304
+				/**
305
+				 * @param \DateTime $creationDate
306
+				 */
307
+				public function setCreationDate($creationDate)
308
+				{
309
+								$this->creationDate = $creationDate;
310
+				}
311 311
 	
312 312
 	/**
313 313
 	 * @return boolean
@@ -325,21 +325,21 @@  discard block
 block discarded – undo
325 325
 		$this->archived = $archived;
326 326
 	}
327 327
 
328
-    /**
329
-     * @return \DateTime
330
-     */
331
-    public function getUpdateDate()
332
-    {
333
-        return $this->updateDate;
334
-    }
335
-
336
-    /**
337
-     * @param \DateTime $updateDate
338
-     */
339
-    public function setUpdateDate($updateDate)
340
-    {
341
-        $this->updateDate = $updateDate;
342
-    }
328
+				/**
329
+				 * @return \DateTime
330
+				 */
331
+				public function getUpdateDate()
332
+				{
333
+								return $this->updateDate;
334
+				}
335
+
336
+				/**
337
+				 * @param \DateTime $updateDate
338
+				 */
339
+				public function setUpdateDate($updateDate)
340
+				{
341
+								$this->updateDate = $updateDate;
342
+				}
343 343
 
344 344
 
345 345
 }
Please login to merge, or discard this patch.