Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
83.33% covered (warning)
83.33%
5 / 6
80.00% covered (warning)
80.00%
4 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
ClassCollection
83.33% covered (warning)
83.33%
5 / 6
80.00% covered (warning)
80.00%
4 / 5
5.12
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 addClassMetadata
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 getIterator
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 jsonSerialize
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 count
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2020 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22declare(strict_types=1);
23
24namespace oat\tao\model\Lists\Business\Domain;
25
26use Countable;
27use IteratorAggregate;
28use JsonSerializable;
29use Traversable;
30
31class ClassCollection implements IteratorAggregate, JsonSerializable, Countable
32{
33    /** @var ClassMetadata[] */
34    private $items = [];
35
36    public function __construct(ClassMetadata ...$items)
37    {
38        $this->items = $items;
39    }
40
41    public function addClassMetadata(ClassMetadata $classMetaData): self
42    {
43        array_push($this->items, $classMetaData);
44
45        return $this;
46    }
47
48    /**
49     * @return ClassMetadata[]|Traversable
50     */
51    public function getIterator(): Traversable
52    {
53        yield from $this->items;
54    }
55
56    public function jsonSerialize(): array
57    {
58        return $this->items;
59    }
60
61    public function count(): int
62    {
63        return count($this->items);
64    }
65}