Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue #2617224 by Wim Leers: Move around/fix some documentation.
This commit is contained in:
parent
4afb23bbd3
commit
7784f4c23d
929 changed files with 19798 additions and 5304 deletions
vendor/symfony/routing
8
vendor/symfony/routing/RouteCollection.php
vendored
8
vendor/symfony/routing/RouteCollection.php
vendored
|
@ -22,8 +22,6 @@ use Symfony\Component\Config\Resource\ResourceInterface;
|
|||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
* @author Tobias Schultze <http://tobion.de>
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
class RouteCollection implements \IteratorAggregate, \Countable
|
||||
{
|
||||
|
@ -73,8 +71,6 @@ class RouteCollection implements \IteratorAggregate, \Countable
|
|||
*
|
||||
* @param string $name The route name
|
||||
* @param Route $route A Route instance
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function add($name, Route $route)
|
||||
{
|
||||
|
@ -122,8 +118,6 @@ class RouteCollection implements \IteratorAggregate, \Countable
|
|||
* routes of the added collection.
|
||||
*
|
||||
* @param RouteCollection $collection A RouteCollection instance
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function addCollection(RouteCollection $collection)
|
||||
{
|
||||
|
@ -143,8 +137,6 @@ class RouteCollection implements \IteratorAggregate, \Countable
|
|||
* @param string $prefix An optional prefix to add before each pattern of the route collection
|
||||
* @param array $defaults An array of default values
|
||||
* @param array $requirements An array of requirements
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function addPrefix($prefix, array $defaults = array(), array $requirements = array())
|
||||
{
|
||||
|
|
Reference in a new issue