ok
Direktori : /home2/selectio/www/a1tex.in/vendor/spatie/crawler/src/Exceptions/ |
Current File : /home2/selectio/www/a1tex.in/vendor/spatie/crawler/src/Exceptions/InvalidCrawlRequestHandler.php |
<?php namespace Spatie\Crawler\Exceptions; use RuntimeException; class InvalidCrawlRequestHandler extends RuntimeException { public static function doesNotExtendBaseClass(string $handlerClass, string $baseClass) { return new static("`{$handlerClass} is not a valid handler class. A valid handler class should extend `{$baseClass}`."); } }