Total Complexity | 4 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Coverage | 86.67% |
Changes | 0 |
1 | <?php |
||
11 | class Factory |
||
12 | { |
||
13 | /** |
||
14 | * @var \TYPO3\CMS\Extbase\Object\ObjectManagerInterface |
||
15 | */ |
||
16 | private $objectManager; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $protocolMarker; |
||
22 | |||
23 | /** |
||
24 | * @param \TYPO3\CMS\Extbase\Object\ObjectManagerInterface $objectManager |
||
25 | */ |
||
26 | 1 | public function injectObjectManager(ObjectManagerInterface $objectManager) |
|
27 | { |
||
28 | 1 | $this->objectManager = $objectManager; |
|
29 | 1 | } |
|
30 | |||
31 | /** |
||
32 | * @param \Aoe\Asdis\System\Configuration\Provider $configurationProvider |
||
33 | */ |
||
34 | 1 | public function injectConfigurationProvider(Provider $configurationProvider) |
|
40 | } |
||
41 | 1 | } |
|
42 | |||
43 | /** |
||
44 | * @param string $identifier |
||
45 | * @param string $domain |
||
46 | * @param string $protocol |
||
47 | * @return \Aoe\Asdis\Domain\Model\Server |
||
48 | */ |
||
49 | 1 | public function createServer($identifier, $domain, $protocol) |
|
58 | } |
||
59 | } |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.