@@ -116,8 +116,6 @@ public function unserialize($serialized)
116
116
}
117
117
118
118
/**
119
- * Returns the pattern for the path.
120
- *
121
119
* @return string The path pattern
122
120
*/
123
121
public function getPath ()
@@ -128,8 +126,6 @@ public function getPath()
128
126
/**
129
127
* Sets the pattern for the path.
130
128
*
131
- * This method implements a fluent interface.
132
- *
133
129
* @param string $pattern The path pattern
134
130
*
135
131
* @return $this
@@ -158,8 +154,6 @@ public function setPath($pattern)
158
154
}
159
155
160
156
/**
161
- * Returns the pattern for the host.
162
- *
163
157
* @return string The host pattern
164
158
*/
165
159
public function getHost ()
@@ -170,8 +164,6 @@ public function getHost()
170
164
/**
171
165
* Sets the pattern for the host.
172
166
*
173
- * This method implements a fluent interface.
174
- *
175
167
* @param string $pattern The host pattern
176
168
*
177
169
* @return $this
@@ -199,8 +191,6 @@ public function getSchemes()
199
191
* Sets the schemes (e.g. 'https') this route is restricted to.
200
192
* So an empty array means that any scheme is allowed.
201
193
*
202
- * This method implements a fluent interface.
203
- *
204
194
* @param string|string[] $schemes The scheme or an array of schemes
205
195
*
206
196
* @return $this
@@ -240,8 +230,6 @@ public function getMethods()
240
230
* Sets the HTTP methods (e.g. 'POST') this route is restricted to.
241
231
* So an empty array means that any method is allowed.
242
232
*
243
- * This method implements a fluent interface.
244
- *
245
233
* @param string|string[] $methods The method or an array of methods
246
234
*
247
235
* @return $this
@@ -255,8 +243,6 @@ public function setMethods($methods)
255
243
}
256
244
257
245
/**
258
- * Returns the options.
259
- *
260
246
* @return array The options
261
247
*/
262
248
public function getOptions ()
@@ -265,10 +251,6 @@ public function getOptions()
265
251
}
266
252
267
253
/**
268
- * Sets the options.
269
- *
270
- * This method implements a fluent interface.
271
- *
272
254
* @return $this
273
255
*/
274
256
public function setOptions (array $ options )
@@ -281,10 +263,6 @@ public function setOptions(array $options)
281
263
}
282
264
283
265
/**
284
- * Adds options.
285
- *
286
- * This method implements a fluent interface.
287
- *
288
266
* @return $this
289
267
*/
290
268
public function addOptions (array $ options )
@@ -300,8 +278,6 @@ public function addOptions(array $options)
300
278
/**
301
279
* Sets an option value.
302
280
*
303
- * This method implements a fluent interface.
304
- *
305
281
* @param string $name An option name
306
282
* @param mixed $value The option value
307
283
*
@@ -340,8 +316,6 @@ public function hasOption($name)
340
316
}
341
317
342
318
/**
343
- * Returns the defaults.
344
- *
345
319
* @return array The defaults
346
320
*/
347
321
public function getDefaults ()
@@ -350,12 +324,6 @@ public function getDefaults()
350
324
}
351
325
352
326
/**
353
- * Sets the defaults.
354
- *
355
- * This method implements a fluent interface.
356
- *
357
- * @param array $defaults The defaults
358
- *
359
327
* @return $this
360
328
*/
361
329
public function setDefaults (array $ defaults )
@@ -366,12 +334,6 @@ public function setDefaults(array $defaults)
366
334
}
367
335
368
336
/**
369
- * Adds defaults.
370
- *
371
- * This method implements a fluent interface.
372
- *
373
- * @param array $defaults The defaults
374
- *
375
337
* @return $this
376
338
*/
377
339
public function addDefaults (array $ defaults )
@@ -433,8 +395,6 @@ public function setDefault($name, $default)
433
395
}
434
396
435
397
/**
436
- * Returns the requirements.
437
- *
438
398
* @return array The requirements
439
399
*/
440
400
public function getRequirements ()
@@ -443,12 +403,6 @@ public function getRequirements()
443
403
}
444
404
445
405
/**
446
- * Sets the requirements.
447
- *
448
- * This method implements a fluent interface.
449
- *
450
- * @param array $requirements The requirements
451
- *
452
406
* @return $this
453
407
*/
454
408
public function setRequirements (array $ requirements )
@@ -459,12 +413,6 @@ public function setRequirements(array $requirements)
459
413
}
460
414
461
415
/**
462
- * Adds requirements.
463
- *
464
- * This method implements a fluent interface.
465
- *
466
- * @param array $requirements The requirements
467
- *
468
416
* @return $this
469
417
*/
470
418
public function addRequirements (array $ requirements )
@@ -526,8 +474,6 @@ public function setRequirement($key, $regex)
526
474
}
527
475
528
476
/**
529
- * Returns the condition.
530
- *
531
477
* @return string The condition
532
478
*/
533
479
public function getCondition ()
@@ -538,8 +484,6 @@ public function getCondition()
538
484
/**
539
485
* Sets the condition.
540
486
*
541
- * This method implements a fluent interface.
542
- *
543
487
* @param string $condition The condition
544
488
*
545
489
* @return $this
0 commit comments