Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class ActiveQueryFindTest extends AbstractActiveQueryFindTest |
||
14 | { |
||
15 | protected string $driverName = 'mysql'; |
||
16 | protected ConnectionInterface $db; |
||
17 | |||
18 | public function setUp(): void |
||
19 | { |
||
20 | parent::setUp(); |
||
21 | |||
22 | $this->db = $this->mysqlConnection; |
||
23 | } |
||
24 | |||
25 | protected function tearDown(): void |
||
32 | } |
||
33 | } |
||
34 |