| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | abstract class AbstractTest extends TestCase |
||
| 14 | { |
||
| 15 | protected $object; |
||
| 16 | |||
| 17 | |||
| 18 | /** |
||
| 19 | * Provides each collection class, respectively. |
||
| 20 | * |
||
| 21 | * @return array |
||
| 22 | */ |
||
| 23 | public function collectionClassProvider() |
||
| 24 | { |
||
| 25 | return [ |
||
| 26 | [Collection::class], |
||
| 27 | [LazyCollection::class], |
||
| 28 | ]; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function tearDown(): void |
||
| 35 | } |
||
| 36 | } |
||
| 37 |