Total Complexity | 4 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class LoggerChainTest extends TestCase |
||
13 | { |
||
14 | public function testStartQuery() : void |
||
15 | { |
||
16 | $sql = 'SELECT ?'; |
||
17 | $params = [1]; |
||
18 | $types = [ParameterType::INTEGER]; |
||
19 | |||
20 | $listener = $this->createChain('startQuery', $sql, $params, $types); |
||
21 | $listener->startQuery($sql, $params, $types); |
||
22 | } |
||
23 | |||
24 | public function testStopQuery() : void |
||
25 | { |
||
26 | $listener = $this->createChain('stopQuery'); |
||
27 | $listener->stopQuery(); |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @param mixed ...$args |
||
32 | */ |
||
33 | private function createChain(string $method, ...$args) : LoggerChain |
||
34 | { |
||
35 | $chain = new LoggerChain([ |
||
36 | $this->createLogger($method, ...$args), |
||
37 | ]); |
||
38 | |||
39 | $chain->addLogger($this->createLogger($method, ...$args)); |
||
1 ignored issue
–
show
|
|||
40 | |||
41 | return $chain; |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @param mixed ...$args |
||
46 | */ |
||
47 | private function createLogger(string $method, ...$args) : SQLLogger |
||
55 | } |
||
56 | } |
||
57 |
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.