Embed   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 13
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 1 1
1
<?php namespace Arcanedev\EmbedVideo\Facades;
2
3
use Arcanedev\EmbedVideo\Contracts\Embed as EmbedContract;
4
use Illuminate\Support\Facades\Facade;
5
6
/**
7
 * Class     Embed
8
 *
9
 * @package  Arcanedev\EmbedVideo\Facades
10
 * @author   ARCANEDEV <[email protected]>
11
 */
12
class Embed extends Facade
13
{
14
    /* -----------------------------------------------------------------
15
     |  Main Methods
16
     | -----------------------------------------------------------------
17
     */
18
    /**
19
     * Get the registered name of the component.
20
     *
21
     * @return string
22
     */
23
    protected static function getFacadeAccessor() { return EmbedContract::class; }
24
}
25