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

TvProcessing::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
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