Skip to content

Commit ed743c1

Browse files
[2.7] More docblock fixes
1 parent d00a330 commit ed743c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/CompiledRouteTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CompiledRouteTest extends TestCase
1818
{
1919
public function testAccessors()
2020
{
21-
$compiled = new CompiledRoute('prefix', 'regex', array('tokens'), array(), array(), array(), array(), array('variables'));
21+
$compiled = new CompiledRoute('prefix', 'regex', array('tokens'), array(), null, array(), array(), array('variables'));
2222
$this->assertEquals('prefix', $compiled->getStaticPrefix(), '__construct() takes a static prefix as its second argument');
2323
$this->assertEquals('regex', $compiled->getRegex(), '__construct() takes a regexp as its third argument');
2424
$this->assertEquals(array('tokens'), $compiled->getTokens(), '__construct() takes an array of tokens as its fourth argument');

0 commit comments

Comments
 (0)