| Total Complexity | 5 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace norsys\score\net\uri\authority; |
||
| 11 | class any |
||
| 12 | implements |
||
| 13 | authority |
||
| 14 | { |
||
| 15 | private |
||
| 16 | $userInfo |
||
| 17 | ; |
||
| 18 | |||
| 19 | function __construct(host $host, port $port, user\info $userInfo) |
||
| 24 | } |
||
| 25 | |||
| 26 | function recipientOfUriAuthorityAsStringFromConverterIs(authority\converter\toString $converter, recipient $recipient) :void |
||
| 27 | { |
||
| 28 | $converter->recipientOfUriAuthorityAsStringIs($this, $recipient); |
||
| 29 | } |
||
| 30 | |||
| 31 | function recipientOfUserInfoInUriAuthorityAsStringFromConverterIs(user\info\converter\toString $converter, recipient $recipient) :void |
||
| 34 | } |
||
| 35 | |||
| 36 | function recipientOfHostInUriAuthorityAsStringFromConverterIs(host\converter\toString $converter, recipient $recipient) :void |
||
| 37 | { |
||
| 38 | $converter->recipientOfHostInUriAuthorityAsStringIs($this->host, $recipient); |
||
| 39 | } |
||
| 40 | |||
| 41 | function recipientOfPortInUriAuthorityAsStringFromConverterIs(port\converter\toString $converter, recipient $recipient) :void |
||
| 44 | } |
||
| 45 | } |
||
| 46 |