mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
22 lines
738 B
PHP
22 lines
738 B
PHP
<?php
|
|
|
|
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 \App\Services\Categorization\CategorizationPipeline
|
|
*/
|
|
class Categorization extends Facade // @phpstan-ignore missingType.iterableValue, missingType.generics
|
|
{
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return CategorizationPipeline::class;
|
|
}
|
|
}
|