| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 2.024 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 308 | public function __construct( |
|
| 31 | HttpClient $client, |
||
| 32 | MessageFactory $messageFactory, |
||
| 33 | SerializerInterface $serializer = null, |
||
| 34 | $context = null |
||
| 35 | ) { |
||
| 36 | 308 | if ($context !== null) { |
|
| 37 | $context = '/'.$context; |
||
| 38 | } |
||
| 39 | |||
| 40 | 308 | parent::__construct( |
|
| 41 | 308 | 'https://maps.googleapis.com/maps/api/place'.$context, |
|
| 42 | 231 | $client, |
|
| 43 | 231 | $messageFactory, |
|
| 44 | 77 | $serializer |
|
| 45 | 154 | ); |
|
| 46 | 308 | } |
|
| 47 | } |
||
| 48 |