Shop   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
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