mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 02:01:33 +00:00
24 lines
735 B
PHP
24 lines
735 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Facades;
|
|
|
|
use App\Services\Categorization\CategorizationPipeline;
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static array categorize(int|string $groupId, string $releaseName, ?string $poster = '', bool $debug = false)
|
|
* @method static \Illuminate\Support\Collection getCategorizers()
|
|
* @method static CategorizationPipeline addCategorizer(\App\Services\Categorization\Contracts\CategorizerInterface $categorizer)
|
|
*
|
|
* @see CategorizationPipeline
|
|
*/
|
|
class Categorization extends Facade // @phpstan-ignore missingType.iterableValue, missingType.generics
|
|
{
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return CategorizationPipeline::class;
|
|
}
|
|
}
|