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 |
| SetCollection | |
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\External\ExternalSet; |
| 6 | use App\CollectionManagement\Domain\Model\Local\Set; |
| 7 | use App\Shared\Domain\Model\Collection; |
| 8 | |
| 9 | /** |
| 10 | * @author Wilhelm Zwertvaegher |
| 11 | * Collection of objects extending BaseSet |
| 12 | * @see BaseSet |
| 13 | * @see Set |
| 14 | * @see ExternalSet |
| 15 | * @extends Collection<BaseSet> |
| 16 | */ |
| 17 | final class SetCollection extends Collection |
| 18 | { |
| 19 | public function __construct(array $elements = []) |
| 20 | { |
| 21 | parent::__construct(BaseSet::class, $elements); |
| 22 | } |
| 23 | } |