MediaConvert   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace Meema\MediaConverter\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * @method static \Aws\MediaConvert\MediaConvertClient getClient()
9
 * @method static \Meema\MediaConverter\Converters\MediaConvert path(string $s3Path, $s3bucket = null)
10
 * @method static \Meema\MediaConverter\Converters\MediaConvert optimizeForWeb()
11
 * @method static \Meema\MediaConverter\Converters\MediaConvert withThumbnails(int $framerateNumerator, int $framerateDenominator, int $maxCaptures, $width = null, $nameModifier = null, $imageQuality = 80)
12
 * @method static \Aws\Result saveTo(string $s3Path, $s3bucket = null)
13
 * @method static \Aws\Result cancelJob(string $id)
14
 * @method static \Aws\Result createJob(array $settings, array $metaData = [], array $tags = [], int $priority = 0)
15
 * @method static \Aws\Result getJob(string $id)
16
 * @method static \Aws\Result listJobs(array $options)
17
 */
18
class MediaConvert extends Facade
19
{
20
    /**
21
     * Get the registered name of the component.
22
     *
23
     * @return string
24
     */
25
    protected static function getFacadeAccessor()
26
    {
27
        return 'media-converter';
28
    }
29
}
30