Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| UserSetCollection | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\CollectionManagement\Domain\Model; |
| 4 | |
| 5 | use App\CollectionManagement\Domain\Model\Local\UserSet; |
| 6 | use App\Shared\Domain\Model\Collection; |
| 7 | |
| 8 | /** |
| 9 | * @author Wilhelm Zwertvaegher |
| 10 | * Collection of UserSet |
| 11 | |
| 12 | * @extends Collection<UserSet> |
| 13 | */ |
| 14 | final class UserSetCollection extends Collection |
| 15 | { |
| 16 | public function __construct(array $elements = []) |
| 17 | { |
| 18 | parent::__construct(UserSet::class, $elements); |
| 19 | } |
| 20 | } |