| @@ 179-185 (lines=7) @@ | ||
| 176 | * |
|
| 177 | * @return integer|null |
|
| 178 | */ |
|
| 179 | public function getMinAge() |
|
| 180 | { |
|
| 181 | if (isset($this->response['age_range']['min'])) { |
|
| 182 | return $this->response['age_range']['min']; |
|
| 183 | } |
|
| 184 | ||
| 185 | return null; |
|
| 186 | } |
|
| 187 | ||
| 188 | /** |
|
| @@ 193-199 (lines=7) @@ | ||
| 190 | * |
|
| 191 | * @return integer|null |
|
| 192 | */ |
|
| 193 | public function getMaxAge() |
|
| 194 | { |
|
| 195 | if (isset($this->response['age_range']['max'])) { |
|
| 196 | return $this->response['age_range']['max']; |
|
| 197 | } |
|
| 198 | ||
| 199 | return null; |
|
| 200 | } |
|
| 201 | ||
| 202 | /** |
|