Completed
Push — master ( 8d14cd...aab142 )
by Aimeos
01:56
created

Shop   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
3
/**
4
 * @license MIT, http://opensource.org/licenses/MIT
5
 * @copyright Aimeos (aimeos.org), 2019
6
 * @package laravel
7
 * @subpackage Facades
8
 */
9
10
11
namespace Aimeos\Shop\Facades;
12
13
14
/**
15
 * Returns the HTML clients
16
 *
17
 * @method static \Aimeos\Client\Html\Iface get()
18
 */
19
class Shop extends \Illuminate\Support\Facades\Facade
20
{
21
    /**
22
     * Get the registered name of the component.
23
     *
24
     * @return string
25
     */
26
    protected static function getFacadeAccessor()
27
    {
28
        return 'aimeos.shop';
29
    }
30
}
31