1 | <?php |
||
15 | class BaseTestCase extends TestCase |
||
16 | { |
||
17 | /** |
||
18 | * @var ConnectionInterface |
||
19 | */ |
||
20 | protected $connection; |
||
21 | |||
22 | protected function setUp() |
||
28 | |||
29 | /** |
||
30 | * @param string $name |
||
31 | * @return ConnectionInterface |
||
32 | */ |
||
33 | protected function createConnection(string $name): ConnectionInterface |
||
49 | |||
50 | public function __destruct() |
||
58 | } |
||
59 |