12. ErrorException
…/­vendor/­nesbot/­carbon/­src/­Carbon/­Carbon.php681
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.php48

ErrorException

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

     *
     * @param integer $hour
     * @param integer $minute
     * @param integer $second
     *
     * @return static
     */
    public function setTime($hour, $minute, $second = 0)
    {
        parent::setTime($hour, $minute, $second);
/**
 * 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
PATH /usr/local/bin:/bin:/usr/bin
HTTP_ACCEPT */*
HTTP_HOST senopatieducationcenter.com
HTTP_USER_AGENT claudebot
DOCUMENT_ROOT /home/senopati/public_html
REMOTE_ADDR 34.237.245.80
REMOTE_PORT 58410
SERVER_ADDR 103.7.226.91
SERVER_NAME senopatieducationcenter.com
SERVER_ADMIN webmaster@senopatieducationcenter.com
SERVER_PORT 80
REQUEST_SCHEME http
REQUEST_URI /community/
SCRIPT_FILENAME /home/senopati/public_html/community/index.php
QUERY_STRING
SCRIPT_URI http://senopatieducationcenter.com/community/
SCRIPT_URL /community/
SCRIPT_NAME /community/index.php
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE LiteSpeed
REQUEST_METHOD GET
PHP_SELF /community/index.php
REQUEST_TIME_FLOAT 1710821296.1371
REQUEST_TIME 1710821296
empty
empty
empty
empty
empty
Key Value
PATH /usr/local/bin:/bin:/usr/bin
0. Whoops\Handler\PrettyPageHandler