21. PDOException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Database/­Connectors/­Connector.php47
20. PDO __construct
…/­vendor/­laravel/­framework/­src/­Illuminate/­Database/­Connectors/­Connector.php47
19. Illuminate\Database\Connectors\Connector createConnection
…/­vendor/­laravel/­framework/­src/­Illuminate/­Database/­Connectors/­MySqlConnector.php20
18. Illuminate\Database\Connectors\MySqlConnector connect
…/­vendor/­laravel/­framework/­src/­Illuminate/­Database/­Connectors/­ConnectionFactory.php59
17. Illuminate\Database\Connectors\ConnectionFactory createSingleConnection
…/­vendor/­laravel/­framework/­src/­Illuminate/­Database/­Connectors/­ConnectionFactory.php47
16. Illuminate\Database\Connectors\ConnectionFactory make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Database/­DatabaseManager.php127
15. Illuminate\Database\DatabaseManager makeConnection
…/­vendor/­laravel/­framework/­src/­Illuminate/­Database/­DatabaseManager.php63
14. Illuminate\Database\DatabaseManager connection
…/­vendor/­laravel/­framework/­src/­Illuminate/­Database/­DatabaseManager.php243
13. Illuminate\Database\DatabaseManager __call
…/­vendor/­barryvdh/­laravel-debugbar/­src/­Barryvdh/­Debugbar/­LaravelDebugBar.php230
12. Barryvdh\Debugbar\LaravelDebugbar boot
…/­vendor/­barryvdh/­laravel-debugbar/­src/­Barryvdh/­Debugbar/­ServiceProvider.php62
11. Barryvdh\Debugbar\ServiceProvider boot
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php550
10. Illuminate\Foundation\Application Illuminate\Foundation\{closure}
<#unknown>0
9. array_walk
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php550
8. Illuminate\Foundation\Application boot
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php706
7. Illuminate\Foundation\Application handle
…/­vendor/­barryvdh/­laravel-debugbar/­src/­Barryvdh/­Debugbar/­Middleware.php34
6. Barryvdh\Debugbar\Middleware handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Http/­FrameGuard.php38
5. Illuminate\Http\FrameGuard handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php72
4. Illuminate\Session\Middleware handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Queue.php47
3. Illuminate\Cookie\Queue handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Guard.php51
2. Illuminate\Cookie\Guard handle
…/­vendor/­stack/­builder/­src/­Stack/­StackedHttpKernel.php23
1. Stack\StackedHttpKernel handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php606
0. Illuminate\Foundation\Application run
…/­index.php49

PDOException

SQLSTATE[HY000] [1045] Access denied for user 'parc'@'localhost' (using password: YES)

	 */
	public function createConnection($dsn, array $config, array $options)
	{
		$username = array_get($config, 'username');
 
		$password = array_get($config, 'password');
 
		return new PDO($dsn, $username, $password, $options);
	}
 
	 */
	public function createConnection($dsn, array $config, array $options)
	{
		$username = array_get($config, 'username');
 
		$password = array_get($config, 'password');
 
		return new PDO($dsn, $username, $password, $options);
	}
 
		$dsn = $this->getDsn($config);
 
		// We need to grab the PDO options that should be used while making the brand
		// new connection instance. The PDO options control various aspects of the
		// connection's behavior, and some might be specified by the developers.
		$options = $this->getOptions($config);
 
		$connection = $this->createConnection($dsn, $config, $options);
 
		$collation = $config['collation'];
	 * Create a single database connection instance.
	 *
	 * @param  array  $config
	 * @return \Illuminate\Database\Connection
	 */
	protected function createSingleConnection(array $config)
	{
		$pdo = $this->createConnector($config)->connect($config);
 
		return $this->createConnection($config['driver'], $pdo, $config['database'], $config['prefix'], $config);
 
		if (isset($config['read']))
		{
			return $this->createReadWriteConnection($config);
		}
		else
		{
			return $this->createSingleConnection($config);
		}
	}
		// and will call the Closure if so, which allows us to have a more generic
		// resolver for the drivers themselves which applies to all connections.
		if (isset($this->extensions[$driver]))
		{
			return call_user_func($this->extensions[$driver], $config, $name);
		}
 
		return $this->factory->make($config, $name);
	}
 
		$name = $name ?: $this->getDefaultConnection();
 
		// If we haven't created this connection, we'll create it based on the config
		// provided in the application. Once we've created the connections we will
		// set the "fetch mode" for PDO which determines the query return types.
		if ( ! isset($this->connections[$name]))
		{
			$connection = $this->makeConnection($name);
 
			$this->connections[$name] = $this->prepare($connection);
	 *
	 * @param  string  $method
	 * @param  array   $parameters
	 * @return mixed
	 */
	public function __call($method, $parameters)
	{
		return call_user_func_array(array($this->connection(), $method), $parameters);
	}
 
 
            $db->listen(function($query, $bindings, $time, $connectionName) use ($db, $queryCollector)
                {
                    $connection = $db->connection($connectionName);
                    if( !method_exists($connection, 'logging') || $connection->logging() ){
                        $queryCollector->addQuery($query, $bindings, $time, $connection);
                    }
                });
        }
 
            ));
        }));
 
        if($this->app['config']->get('laravel-debugbar::config.enabled'))
        {
            /** @var LaravelDebugbar $debugbar */
            $debugbar = $this->app['debugbar'];
            $debugbar->boot();
 
        }
	 *
	 * @return void
	 */
	public function boot()
	{
		if ($this->booted) return;
 
		array_walk($this->serviceProviders, function($p) { $p->boot(); });
 
		$this->bootApplication();
<#unknown>
	 *
	 * @return void
	 */
	public function boot()
	{
		if ($this->booted) return;
 
		array_walk($this->serviceProviders, function($p) { $p->boot(); });
 
		$this->bootApplication();
	 */
	public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		try
		{
			$this->refreshRequest($request = Request::createFromBase($request));
 
			$this->boot();
 
			return $this->dispatch($request);
     * {@inheritdoc}
     */
    public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true)
    {
        /** @var LaravelDebugbar $debugbar */
        $debugbar = $this->app['debugbar'];
 
        $response = $this->kernel->handle($request, $type, $catch);
        return $debugbar->modifyResponse($request, $response);
    }
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		$response = $this->app->handle($request, $type, $catch);
 
		$response->headers->set('X-Frame-Options', 'SAMEORIGIN', false);
		if ($this->sessionConfigured())
		{
			$session = $this->startSession($request);
 
			$request->setSession($session);
		}
 
		$response = $this->app->handle($request, $type, $catch);
 
		// Again, if the session has been configured we will need to close out the session
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		$response = $this->app->handle($request, $type, $catch);
 
		foreach ($this->cookies->getQueuedCookies() as $cookie)
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
	}
 
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
 
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
 
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @return void
	 */
	public function run(SymfonyRequest $request = null)
	{
		$request = $request ?: $this['request'];
 
		$response = with($stack = $this->getStackedClient())->handle($request);
 
		$response->send();
| Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have whipped up for them.
|
*/
 
$app->run();
 
Key Value
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_HOST parc.loc-courtoisie.fr
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
SERVER_SIGNATURE <address>Apache/2.4.38 (Debian) Server at parc.loc-courtoisie.fr Port 80</address>
SERVER_SOFTWARE Apache/2.4.38 (Debian)
SERVER_NAME parc.loc-courtoisie.fr
SERVER_ADDR 172.31.0.158
SERVER_PORT 80
REMOTE_ADDR 54.89.127.249
DOCUMENT_ROOT /var/www/parc.loc-courtoisie.clubautogenerate.com
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /var/www/parc.loc-courtoisie.clubautogenerate.com
SERVER_ADMIN [no address given]
SCRIPT_FILENAME /var/www/parc.loc-courtoisie.clubautogenerate.com/index.php
REMOTE_PORT 59878
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711691619.6924
REQUEST_TIME 1711691619
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler
Whoops! There was an error.
12. ErrorException
…/­vendor/­nesbot/­carbon/­src/­Carbon/­Carbon.php2127
11. Illuminate\Exception\Handler handleError
…/­vendor/­composer/­ClassLoader.php363
10. include
…/­vendor/­composer/­ClassLoader.php363
9. Composer\Autoload\includeFile
…/­vendor/­composer/­ClassLoader.php269
8. Composer\Autoload\ClassLoader loadClass
<#unknown>0
7. spl_autoload_call
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php214
6. Illuminate\Session\Middleware getCookieLifetime
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php190
5. Illuminate\Session\Middleware addCookieToResponse
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php81
4. Illuminate\Session\Middleware handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Queue.php47
3. Illuminate\Cookie\Queue handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Guard.php51
2. Illuminate\Cookie\Guard handle
…/­vendor/­stack/­builder/­src/­Stack/­StackedHttpKernel.php23
1. Stack\StackedHttpKernel handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php606
0. Illuminate\Foundation\Application run
…/­index.php49

ErrorException

Declaration of Carbon\Carbon::setTime($hour, $minute, $second = 0) should be compatible with DateTime::setTime($hour, $minute, $second = NULL, $microseconds = NULL)

   */
   public function average(Carbon $dt = null)
   {
      $dt = ($dt === null) ? static::now($this->tz) : $dt;
 
      return $this->addSeconds(intval($this->diffInSeconds($dt, false) / 2));
   }
}
 
/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 */
function includeFile($file)
{
    include $file;
}
 
/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 */
function includeFile($file)
{
    include $file;
}
 
     *
     * @param  string    $class The name of the class
     * @return bool|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            includeFile($file);
 
            return true;
<#unknown>
	 *
	 * @return int
	 */
	protected function getCookieLifetime()
	{
		$config = $this->manager->getSessionConfig();
 
		return $config['expire_on_close'] ? 0 : Carbon::now()->addMinutes($config['lifetime']);
	}
 
		$s = $session;
 
		if ($this->sessionIsPersistent($c = $this->manager->getSessionConfig()))
		{
			$secure = array_get($c, 'secure', false);
 
			$response->headers->setCookie(new Cookie(
				$s->getName(), $s->getId(), $this->getCookieLifetime(), $c['path'], $c['domain'], $secure
			));
		}
		// Again, if the session has been configured we will need to close out the session
		// so that the attributes may be persisted to some storage medium. We will also
		// add the session identifier cookie to the application response headers now.
		if ($this->sessionConfigured())
		{
			$this->closeSession($session);
 
			$this->addCookieToResponse($response, $session);
		}
 
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		$response = $this->app->handle($request, $type, $catch);
 
		foreach ($this->cookies->getQueuedCookies() as $cookie)
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
	}
 
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
 
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
 
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @return void
	 */
	public function run(SymfonyRequest $request = null)
	{
		$request = $request ?: $this['request'];
 
		$response = with($stack = $this->getStackedClient())->handle($request);
 
		$response->send();
| Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have whipped up for them.
|
*/
 
$app->run();
 
Key Value
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_HOST parc.loc-courtoisie.fr
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
SERVER_SIGNATURE <address>Apache/2.4.38 (Debian) Server at parc.loc-courtoisie.fr Port 80</address>
SERVER_SOFTWARE Apache/2.4.38 (Debian)
SERVER_NAME parc.loc-courtoisie.fr
SERVER_ADDR 172.31.0.158
SERVER_PORT 80
REMOTE_ADDR 54.89.127.249
DOCUMENT_ROOT /var/www/parc.loc-courtoisie.clubautogenerate.com
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /var/www/parc.loc-courtoisie.clubautogenerate.com
SERVER_ADMIN [no address given]
SCRIPT_FILENAME /var/www/parc.loc-courtoisie.clubautogenerate.com/index.php
REMOTE_PORT 59878
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711691619.6924
REQUEST_TIME 1711691619
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler