Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class TestCase extends \Orchestra\Testbench\TestCase |
||
12 | { |
||
13 | public function setUp(): void |
||
14 | { |
||
15 | parent::setUp(); |
||
16 | |||
17 | $this->createTable(new Foo()); |
||
18 | $this->createTable(new Bar()); |
||
19 | $this->createTable(new Baz()); |
||
20 | $this->createTable(new DoNotExport()); |
||
21 | } |
||
22 | |||
23 | protected function getEnvironmentSetUp($app) |
||
31 | ]); |
||
32 | } |
||
33 | |||
34 | protected function createTable(Model $model) |
||
42 | } |
||
43 | } |
||
47 |