Shop::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * @license MIT, http://opensource.org/licenses/MIT
5
 * @copyright Aimeos (aimeos.org), 2019-2023
6
 */
7
8
9
namespace Aimeos\Shop\Facades;
10
11
12
/**
13
 * Returns the HTML clients
14
 *
15
 * @method static \Aimeos\Client\Html\Iface get()
16
 */
17
class Shop extends \Illuminate\Support\Facades\Facade
18
{
19
	/**
20
	 * Get the registered name of the component.
21
	 *
22
	 * @return string
23
	 */
24
	protected static function getFacadeAccessor()
25
	{
26
		return 'aimeos.shop';
27
	}
28
}
29