| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 9 | final class ActiveRecordFactoryTest extends \Yiisoft\ActiveRecord\Tests\ActiveRecordFactoryTest |
||
| 10 | { |
||
| 11 | public function setUp(): void |
||
| 12 | { |
||
| 13 | parent::setUp(); |
||
| 14 | |||
| 15 | $mysqlHelper = new MysqlHelper(); |
||
| 16 | $this->db = $mysqlHelper->createConnection(); |
||
| 17 | $this->arFactory = $mysqlHelper->createARFactory($this->db); |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function tearDown(): void |
||
| 27 | } |
||
| 28 | } |
||
| 29 |