Example   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getSubClientNames() 0 3 1
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Metaways Infosystems GmbH, 2014
6
 * @copyright Aimeos (aimeos.org), 2015-2025
7
 */
8
9
10
namespace Aimeos\Client\Html\Common\Decorator;
11
12
13
/**
14
 * Provides example decorator for html clients.
15
 */
16
class Example
17
	extends \Aimeos\Client\Html\Common\Decorator\Base
18
	implements \Aimeos\Client\Html\Common\Decorator\Iface
19
{
20
	protected function getSubClientNames() : array
21
	{
22
		return [];
23
	}
24
}
25