/home/techb158/dev.balacoffee.com/vendor/symfony/http-kernel/DataCollector
NameSizeModeActions
AjaxDataCollector.php8190644editdlrm
ConfigDataCollector.php73790644editdlrm
DataCollector.php26620644editdlrm
DataCollectorInterface.php8690644editdlrm
DumpDataCollector.php106830644editdlrm
EventDataCollector.php35440644editdlrm
ExceptionDataCollector.php17850644editdlrm
LateDataCollectorInterface.php5180644editdlrm
LoggerDataCollector.php111650644editdlrm
MemoryDataCollector.php24010644editdlrm
RequestDataCollector.php161430644editdlrm
RouterDataCollector.php24010644editdlrm
TimeDataCollector.php35880644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/symfony/http-kernel/DataCollector/AjaxDataCollector.php (819B)
* * 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; /** * @author Bart van den Burg * * @final */ class AjaxDataCollector extends DataCollector { public function collect(Request $request, Response $response, \Throwable $exception = null) { // all collecting is done client side } public function reset() { // all collecting is done client side } public function getName(): string { return 'ajax'; } }