IControl::create()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
/**
3
 * IControl.php
4
 *
5
 * @copyright      Vice v copyright.php
6
 * @license        https://www.ipublikuj.eu
7
 * @author         Adam Kadlec <[email protected]>
8
 * @package        iPublikuj:Widgets!
9
 * @subpackage     Components
10
 * @since          1.0.0
11
 *
12
 * @date           24.07.13
13
 */
14
15
declare(strict_types = 1);
16
17
namespace IPub\Widgets\Components;
18
19
/**
20
 * Widgets container control factory definition
21
 *
22
 * @package        iPublikuj:Widgets!
23
 * @subpackage     Components
24
 *
25
 * @author         Adam Kadlec <[email protected]>
26
 */
27 1
interface IControl
28
{
29
	/**
30
	 * @param string $position
31
	 *
32
	 * @return Control
33
	 */
34
	function create(string $position = 'default') : Control;
35
}
36