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

Shop::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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