5. Symfony\Component\HttpKernel\Exception\NotFoundHttpException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1429
4. Illuminate\Routing\Router handleRoutingException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1050
3. Illuminate\Routing\Router findRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1014
2. Illuminate\Routing\Router dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php530
1. Illuminate\Foundation\Application dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php506
0. Illuminate\Foundation\Application run
…/­public/­index.php49

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException

	 * @param  Exception  $e
	 * @return void
	 */
	protected function handleRoutingException(\Exception $e)
	{
		if ($e instanceof ResourceNotFoundException)
		{
			throw new NotFoundHttpException($e->getMessage());
		}

		}

		// The Symfony routing component's exceptions implement this interface we
		// can type-hint it to make sure we're only providing special handling
		// for those exceptions, and not other random exceptions that occur.
		catch (ExceptionInterface $e)
		{
			$this->handleRoutingException($e);
		}

		}

		// Once we have the route, we can just run it to get the responses, which will
		// always be instances of the Response class. Once we have the responses we
		// will execute the global "after" middlewares to finish off the request.
		else
		{
			$this->currentRoute = $route = $this->findRoute($request);

			$response = $route->run($request);
		if ($this->isDownForMaintenance())
		{
			$response = $this['events']->until('illuminate.app.down');

			if ( ! is_null($response)) return $this->prepareResponse($response, $request);
		}
		
		return $this['router']->dispatch($this->prepareRequest($request));
	}

	/**
	 * Handles the given request and delivers the response.
	 *
	 * @return void
	 */
	public function run()
	{
		$response = $this->dispatch($this['request']);

		$this['router']->callCloseFilter($this['request'], $response);
| 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 applications we have created for them.
|
*/
 
$app->run();
 
/*
Key Value
LSPHP_ENABLE_USER_INI on
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
HTTP_ACCEPT */*
CONTENT_LENGTH 0
HTTP_HOST www.osaojoaodecampina.com.br
HTTP_USER_AGENT claudebot
REDIRECT_UNIQUE_ID ZfkGp8tPZ9_qKfHmfuR0rwAAALA
REDIRECT_QS_SrvConn 64
REDIRECT_QS_AllConn 64
REDIRECT_QS_ConnectionId 171081898290764912447110
REDIRECT_SCRIPT_URL /programacao/palco-principal
REDIRECT_SCRIPT_URI http://www.osaojoaodecampina.com.br/programacao/palco-principal
REDIRECT_STATUS 200
UNIQUE_ID ZfkGp8tPZ9_qKfHmfuR0rwAAALA
QS_SrvConn 64
QS_AllConn 64
QS_ConnectionId 171081898290764912447110
SCRIPT_URL /programacao/palco-principal
SCRIPT_URI http://www.osaojoaodecampina.com.br/programacao/palco-principal
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME www.osaojoaodecampina.com.br
SERVER_ADDR 50.116.112.153
SERVER_PORT 80
REMOTE_ADDR 3.236.111.234
DOCUMENT_ROOT /home1/rrena182/osaojoaodecampina.com.br/2022/site/public
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home1/rrena182/osaojoaodecampina.com.br/2022/site/public
SERVER_ADMIN webmaster@osaojoaodecampina.rrenansantos.com.br
SCRIPT_FILENAME /home1/rrena182/osaojoaodecampina.com.br/2022/site/public/index.php
REMOTE_PORT 55398
REDIRECT_URL /programacao/palco-principal
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /programacao/palco-principal
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710818984.4534
REQUEST_TIME 1710818984
argv Array ( )
argc 0
empty
empty
empty
empty
Key Value
_sf2_attributes Array ( [_token] => uBfzs8jDdj6Dk6GJNJhjGSZ4GXIritkYMx2VLXJX )
_sf2_flashes Array ( )
_sf2_meta Array ( [u] => 1710818984 [c] => 1710818984 [l] => 10800 )
empty
0. Whoops\Handler\PrettyPageHandler