| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function __construct( |
||
| 31 | HttpClient $client, |
||
| 32 | MessageFactory $messageFactory, |
||
| 33 | Parser $parser = null, |
||
| 34 | $context = null |
||
| 35 | ) { |
||
| 36 | if ($context !== null) { |
||
| 37 | $context = '/'.$context; |
||
| 38 | } |
||
| 39 | |||
| 40 | parent::__construct($client, $messageFactory, 'http://maps.googleapis.com/maps/api/place'.$context, $parser); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |