![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/vendor/barryvdh/laravel-debugbar/src/ |
<?php namespace Barryvdh\Debugbar; use DebugBar\HttpDriverInterface; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Session\Session; /** * HTTP driver for Symfony Request/Session */ class SymfonyHttpDriver implements HttpDriverInterface { /** @var \Illuminate\Contracts\Session\Session|\Illuminate\Session\SessionManager */ protected $session; /** @var \Symfony\Component\HttpFoundation\Response */ protected $response; public function __construct($session, $response = null) { $this->session = $session; $this->response = $response; } /** * {@inheritDoc} */ public function setHeaders(array $headers) { if (!is_null($this->response)) { $this->response->headers->add($headers); } } /** * {@inheritDoc} */ public function isSessionStarted() { if (!$this->session->isStarted()) { $this->session->start(); } return $this->session->isStarted(); } /** * {@inheritDoc} */ public function setSessionValue($name, $value) { $this->session->put($name, $value); } /** * {@inheritDoc} */ public function hasSessionValue($name) { return $this->session->has($name); } /** * {@inheritDoc} */ public function getSessionValue($name) { return $this->session->get($name); } /** * {@inheritDoc} */ public function deleteSessionValue($name) { $this->session->remove($name); } }