| Conditions | 3 |
| Paths | 4 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 32 | public function __construct($query, $latitude = null, $longitude = null, $radius = null) |
||
| 33 | { |
||
| 34 | $this->query = new Query($query); |
||
| 35 | |||
| 36 | if (null !== $latitude) { |
||
| 37 | $this->location = new Location($latitude, $longitude); |
||
| 38 | } |
||
| 39 | |||
| 40 | if (null !== $radius) { |
||
| 41 | $this->radius = new Radius($radius); |
||
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 69 |