| Conditions | 3 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 42 | public function __construct($latitude, $longitude, $radius = null, $name = null) |
||
| 43 | { |
||
| 44 | $this->location = new Location($latitude, $longitude); |
||
| 45 | if (null !== $radius) { |
||
| 46 | $this->radius = new Radius($radius); |
||
| 47 | } |
||
| 48 | |||
| 49 | if (!empty($name)) { |
||
| 50 | $this->name = new PlaceName($name); |
||
| 51 | } |
||
| 52 | } |
||
| 53 | |||
| 116 |