| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class RepresentedPartyReference implements IteratorAggregate |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string[] |
||
| 19 | */ |
||
| 20 | private $parts; |
||
| 21 | |||
| 22 | 1 | public function getIterator() |
|
| 29 | 1 | } |
|
| 30 | |||
| 31 | /** |
||
| 32 | * @see https://x-tee.ee/docs/live/xroad/pr-third_party_representation_extension.html |
||
| 33 | * @param string $reference reference of a party who is represented by client. |
||
| 34 | * format: [{partyClass}/]{partyCode} |
||
| 35 | * @param string $reference |
||
| 36 | */ |
||
| 37 | 1 | public function __construct(string $reference) |
|
| 42 |