Passed
Push — master ( ef23e7...786259 )
by Darko
09:23
created

TvProcessing   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
c 1
b 0
f 0
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace App\Facades;
4
5
use App\Services\TvProcessing\TvProcessingPipeline;
6
use Illuminate\Support\Facades\Facade;
7
8
/**
9
 * @method static array processRelease(array|object $release, bool $debug = false)
10
 * @method static void process(string $groupID = '', string $guidChar = '', int|string|null $processTV = '')
11
 * @method static TvProcessingPipeline addPipe(\App\Services\TvProcessing\Pipes\AbstractTvProviderPipe $pipe)
12
 * @method static \Illuminate\Support\Collection getPipes()
13
 * @method static array getStats()
14
 *
15
 * @see \App\Services\TvProcessing\TvProcessingPipeline
16
 */
17
class TvProcessing extends Facade
18
{
19
    /**
20
     * Get the registered name of the component.
21
     */
22
    protected static function getFacadeAccessor(): string
23
    {
24
        return TvProcessingPipeline::class;
25
    }
26
}
27
28