29 lines
791 B
PHP
29 lines
791 B
PHP
<?php
|
|
|
|
namespace Crawlshot\Laravel\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static array createCrawl(string $url, array $options = [])
|
|
* @method static array getCrawlStatus(string $uuid)
|
|
* @method static array listCrawls()
|
|
* @method static string downloadCrawl(string $uuid)
|
|
* @method static array createShot(string $url, array $options = [])
|
|
* @method static array getShotStatus(string $uuid)
|
|
* @method static string downloadShot(string $uuid)
|
|
* @method static array listShots()
|
|
* @method static array health()
|
|
*
|
|
* @see \Crawlshot\Laravel\CrawlshotClient
|
|
*/
|
|
class Crawlshot extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*/
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return 'crawlshot';
|
|
}
|
|
} |