File "CouldntGetRouteDetails.php"

Full Path: /var/www/html/back/vendor/knuckleswtf/scribe/src/Exceptions/CouldntGetRouteDetails.php
File size: 301 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Knuckles\Scribe\Exceptions;

class CouldntGetRouteDetails extends \RuntimeException implements ScribeException
{
    public static function new(): self
    {
        return new self("Unable to retrieve controller and method for route; try running `php artisan route:clear`");
    }
}