Skip to content

Commit

Permalink
Annotated routes with a variadic parameter
Browse files Browse the repository at this point in the history
There are no variadic default values and that generate a fatal error.
  • Loading branch information
wdalmut authored and stof committed Aug 1, 2015
1 parent 69171d4 commit 9b7d4c7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
@@ -0,0 +1,19 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Routing\Tests\Fixtures\AnnotatedClasses;

class VariadicClass
{
public function routeAction(...$params)
{
}
}
Expand Up @@ -13,6 +13,7 @@

use Symfony\Component\Routing\Loader\AnnotationFileLoader;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\Routing\Annotation\Route;

class AnnotationFileLoaderTest extends AbstractAnnotationLoaderTest
{
Expand All @@ -34,6 +35,19 @@ public function testLoad()
$this->loader->load(__DIR__.'/../Fixtures/AnnotatedClasses/FooClass.php');
}

/**
* @requires PHP 5.6
*/
public function testLoadVariadic()
{
$route = new Route(["path" => "/path/to/{id}"]);
$this->reader->expects($this->once())->method('getClassAnnotation');
$this->reader->expects($this->once())->method('getMethodAnnotations')
->will($this->returnValue([$route]));

$this->loader->load(__DIR__.'/../Fixtures/AnnotatedClasses/VariadicClass.php');
}

public function testSupports()
{
$fixture = __DIR__.'/../Fixtures/annotated.php';
Expand Down

0 comments on commit 9b7d4c7

Please sign in to comment.