1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Symfony\Component\HttpKernel\Fragment;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpKernel\Controller\ControllerReference;
- interface FragmentUriGeneratorInterface
- {
-
- public function generate(ControllerReference $controller, ?Request $request = null, bool $absolute = false, bool $strict = true, bool $sign = true): string;
- }
|