Conditions | 4 |
Paths | 4 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
67 | public function getHrefs(string $part = null, array $queryString = []) |
||
68 | { |
||
69 | if ($part !== null) { |
||
70 | if (!isset($this->hrefs[$part])) { |
||
71 | throw new UndefinedIndexException("index $part not in hrefs"); |
||
72 | } |
||
73 | |||
74 | $post = ''; |
||
75 | if (!empty($queryString)) { |
||
76 | $post = '?' . http_build_query($queryString); |
||
77 | } |
||
78 | |||
79 | return $this->hrefs[$part] . $post; |
||
80 | } |
||
81 | return $this->hrefs; |
||
82 | } |
||
83 | } |
||
84 |