for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\MissingPageRedirector\Events;
class RouteWasHit
{
/** @var string */
public $route;
public $missingUrl;
/** @var int|null */
public $statusCode;
public function __construct(string $route, string $missingUrl, int $statusCode = null)
$this->route = $route;
$this->missingUrl = $missingUrl;
$this->statusCode = $statusCode;
}