/home/techb158/immovalet.com/vendor/symfony/http-kernel/DataCollector
NameSizeModeActions
AjaxDataCollector.php8360644editdlrm
ConfigDataCollector.php79000644editdlrm
DataCollector.php26620644editdlrm
DataCollectorInterface.php8880644editdlrm
DumpDataCollector.php105250644editdlrm
EventDataCollector.php38110644editdlrm
ExceptionDataCollector.php23270644editdlrm
LateDataCollectorInterface.php5180644editdlrm
LoggerDataCollector.php85620644editdlrm
MemoryDataCollector.php25850644editdlrm
RequestDataCollector.php160170644editdlrm
RouterDataCollector.php24140644editdlrm
TimeDataCollector.php37380644editdlrm
Edit: /home/techb158/immovalet.com/vendor/symfony/http-kernel/DataCollector/DataCollectorInterface.php (888B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\DataCollector; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Contracts\Service\ResetInterface; /** * DataCollectorInterface. * * @author Fabien Potencier */ interface DataCollectorInterface extends ResetInterface { /** * Collects data for the given Request and Response. */ public function collect(Request $request, Response $response, \Throwable $exception = null); /** * Returns the name of the collector. * * @return string The collector name */ public function getName(); }