File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/symfony/http-kernel
Upload
[..]
Attribute/
Rename
Del
Bundle/
Rename
Del
CHANGELOG.md (23.36 KB)
Edit
Rename
Del
CacheClearer/
Rename
Del
CacheWarmer/
Rename
Del
Config/
Rename
Del
Controller/
Rename
Del
ControllerMetadata/
Rename
Del
DataCollector/
Rename
Del
Debug/
Rename
Del
DependencyInjection/
Rename
Del
Event/
Rename
Del
EventListener/
Rename
Del
Exception/
Rename
Del
Fragment/
Rename
Del
HttpCache/
Rename
Del
HttpClientKernel.php (3.85 KB)
Edit
Rename
Del
HttpKernel.php (11.11 KB)
Edit
Rename
Del
HttpKernelBrowser.php (5.92 KB)
Edit
Rename
Del
HttpKernelInterface.php (1.2 KB)
Edit
Rename
Del
Kernel.php (32.09 KB)
Edit
Rename
Del
KernelEvents.php (4.04 KB)
Edit
Rename
Del
KernelInterface.php (4.16 KB)
Edit
Rename
Del
LICENSE (1.04 KB)
Edit
Rename
Del
Log/
Rename
Del
Profiler/
Rename
Del
README.md (676 B)
Edit
Rename
Del
RebootableInterface.php (793 B)
Edit
Rename
Del
Resources/
Rename
Del
TerminableInterface.php (916 B)
Edit
Rename
Del
composer.json (2.81 KB)
Edit
Rename
Del
Edit: RebootableInterface.php
<?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; /** * Allows the Kernel to be rebooted using a temporary cache directory. * * @author Nicolas Grekas <p@tchwork.com> */ interface RebootableInterface { /** * Reboots a kernel. * * The getBuildDir() method of a rebootable kernel should not be called * while building the container. Use the %kernel.build_dir% parameter instead. * * @param string|null $warmupDir pass null to reboot in the regular build directory */ public function reboot(?string $warmupDir): void; }
Simpan