@@ -112,8 +112,6 @@ final public function unserialize($serialized)
112
112
}
113
113
114
114
/**
115
- * Returns the pattern for the path.
116
- *
117
115
* @return string The path pattern
118
116
*/
119
117
public function getPath ()
@@ -124,8 +122,6 @@ public function getPath()
124
122
/**
125
123
* Sets the pattern for the path.
126
124
*
127
- * This method implements a fluent interface.
128
- *
129
125
* @return $this
130
126
*/
131
127
public function setPath (string $ pattern )
@@ -141,8 +137,6 @@ public function setPath(string $pattern)
141
137
}
142
138
143
139
/**
144
- * Returns the pattern for the host.
145
- *
146
140
* @return string The host pattern
147
141
*/
148
142
public function getHost ()
@@ -153,8 +147,6 @@ public function getHost()
153
147
/**
154
148
* Sets the pattern for the host.
155
149
*
156
- * This method implements a fluent interface.
157
- *
158
150
* @return $this
159
151
*/
160
152
public function setHost (?string $ pattern )
@@ -180,8 +172,6 @@ public function getSchemes()
180
172
* Sets the schemes (e.g. 'https') this route is restricted to.
181
173
* So an empty array means that any scheme is allowed.
182
174
*
183
- * This method implements a fluent interface.
184
- *
185
175
* @param string|string[] $schemes The scheme or an array of schemes
186
176
*
187
177
* @return $this
@@ -219,8 +209,6 @@ public function getMethods()
219
209
* Sets the HTTP methods (e.g. 'POST') this route is restricted to.
220
210
* So an empty array means that any method is allowed.
221
211
*
222
- * This method implements a fluent interface.
223
- *
224
212
* @param string|string[] $methods The method or an array of methods
225
213
*
226
214
* @return $this
@@ -234,8 +222,6 @@ public function setMethods($methods)
234
222
}
235
223
236
224
/**
237
- * Returns the options.
238
- *
239
225
* @return array The options
240
226
*/
241
227
public function getOptions ()
@@ -244,10 +230,6 @@ public function getOptions()
244
230
}
245
231
246
232
/**
247
- * Sets the options.
248
- *
249
- * This method implements a fluent interface.
250
- *
251
233
* @return $this
252
234
*/
253
235
public function setOptions (array $ options )
@@ -260,10 +242,6 @@ public function setOptions(array $options)
260
242
}
261
243
262
244
/**
263
- * Adds options.
264
- *
265
- * This method implements a fluent interface.
266
- *
267
245
* @return $this
268
246
*/
269
247
public function addOptions (array $ options )
@@ -279,8 +257,6 @@ public function addOptions(array $options)
279
257
/**
280
258
* Sets an option value.
281
259
*
282
- * This method implements a fluent interface.
283
- *
284
260
* @param mixed $value The option value
285
261
*
286
262
* @return $this
@@ -314,8 +290,6 @@ public function hasOption(string $name)
314
290
}
315
291
316
292
/**
317
- * Returns the defaults.
318
- *
319
293
* @return array The defaults
320
294
*/
321
295
public function getDefaults ()
@@ -324,12 +298,6 @@ public function getDefaults()
324
298
}
325
299
326
300
/**
327
- * Sets the defaults.
328
- *
329
- * This method implements a fluent interface.
330
- *
331
- * @param array $defaults The defaults
332
- *
333
301
* @return $this
334
302
*/
335
303
public function setDefaults (array $ defaults )
@@ -340,12 +308,6 @@ public function setDefaults(array $defaults)
340
308
}
341
309
342
310
/**
343
- * Adds defaults.
344
- *
345
- * This method implements a fluent interface.
346
- *
347
- * @param array $defaults The defaults
348
- *
349
311
* @return $this
350
312
*/
351
313
public function addDefaults (array $ defaults )
@@ -402,8 +364,6 @@ public function setDefault(string $name, $default)
402
364
}
403
365
404
366
/**
405
- * Returns the requirements.
406
- *
407
367
* @return array The requirements
408
368
*/
409
369
public function getRequirements ()
@@ -412,12 +372,6 @@ public function getRequirements()
412
372
}
413
373
414
374
/**
415
- * Sets the requirements.
416
- *
417
- * This method implements a fluent interface.
418
- *
419
- * @param array $requirements The requirements
420
- *
421
375
* @return $this
422
376
*/
423
377
public function setRequirements (array $ requirements )
@@ -428,12 +382,6 @@ public function setRequirements(array $requirements)
428
382
}
429
383
430
384
/**
431
- * Adds requirements.
432
- *
433
- * This method implements a fluent interface.
434
- *
435
- * @param array $requirements The requirements
436
- *
437
385
* @return $this
438
386
*/
439
387
public function addRequirements (array $ requirements )
@@ -488,8 +436,6 @@ public function setRequirement(string $key, string $regex)
488
436
}
489
437
490
438
/**
491
- * Returns the condition.
492
- *
493
439
* @return string The condition
494
440
*/
495
441
public function getCondition ()
@@ -500,8 +446,6 @@ public function getCondition()
500
446
/**
501
447
* Sets the condition.
502
448
*
503
- * This method implements a fluent interface.
504
- *
505
449
* @return $this
506
450
*/
507
451
public function setCondition (?string $ condition )
0 commit comments