Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class Standard |
||
21 | extends \Aimeos\Client\Html\Catalog\Filter\Standard |
||
22 | implements \Aimeos\Client\Html\Common\Client\Factory\Iface |
||
23 | { |
||
24 | /** |
||
25 | * Returns the HTML string for insertion into the header. |
||
26 | * |
||
27 | * @param string $uid Unique identifier for the output if the content is placed more than once on the same page |
||
28 | * @return string|null String including HTML tags for the header on error |
||
29 | */ |
||
30 | public function header( string $uid = '' ) : ?string |
||
31 | { |
||
32 | return null; |
||
33 | } |
||
34 | |||
35 | |||
36 | /** |
||
37 | * Returns the names of the subpart clients |
||
38 | * |
||
39 | * @return array List of client names |
||
40 | */ |
||
41 | protected function getSubClientNames() : array |
||
44 | } |
||
45 | } |
||
46 |