/var/www/cobraambalaj/vendor/symfony/http-kernel/DataCollector
NameSizeModeActions
AjaxDataCollector.php8360644editdlrm
ConfigDataCollector.php79700644editdlrm
DataCollector.php26620644editdlrm
DataCollectorInterface.php8880644editdlrm
DumpDataCollector.php102620644editdlrm
EventDataCollector.php38130644editdlrm
ExceptionDataCollector.php23270644editdlrm
LateDataCollectorInterface.php5180644editdlrm
LoggerDataCollector.php85810644editdlrm
MemoryDataCollector.php25790644editdlrm
RequestDataCollector.php160010644editdlrm
RouterDataCollector.php24140644editdlrm
TimeDataCollector.php37380644editdlrm
Edit: /var/www/cobraambalaj/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(); }