1 | <?php |
||
12 | class Factory |
||
13 | { |
||
14 | /** |
||
15 | * @var Config |
||
16 | */ |
||
17 | private $config; |
||
18 | |||
19 | /** |
||
20 | * @param Config $config |
||
21 | */ |
||
22 | public function __construct(Config $config) |
||
26 | |||
27 | /** |
||
28 | * @return RouterChain |
||
29 | */ |
||
30 | public function createRouterChain(): RouterChain |
||
34 | |||
35 | /** |
||
36 | * @return ActionMapper |
||
37 | */ |
||
38 | public function createActionMapper(): ActionMapper |
||
42 | |||
43 | public function createTransactionMonitoring(): TransactionMonitoring |
||
47 | |||
48 | /** |
||
49 | * @codeCoverageIgnore |
||
50 | */ |
||
51 | public function createConcreteTransactionMonitoring(): TransactionMonitoring |
||
58 | |||
59 | public function createVoidTransactionMonitoring(): TransactionMonitoring |
||
63 | |||
64 | public function createTransactionNameMapper(): TransactionNameMapper |
||
68 | |||
69 | private function createMonitoringLocator(): MonitoringLocator |
||
73 | |||
74 | private function createNewRelicFactory(): NewRelicFactory |
||
78 | } |
||
79 |