Passed
Push — master ( 82aaad...ac7049 )
by Roberto
04:19
created

GeocodingResultsCollection::parseItem()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
/**
3
 * Copyright (c) 2018 - present
4
 * Google Maps PHP - GeocodingResultsCollection.php
5
 * author: Roberto Belotti - [email protected]
6
 * web : robertobelotti.com, github.com/biscolab
7
 * Initial version created on: 5/9/2018
8
 * MIT license: https://github.com/biscolab/google-maps-php/blob/master/LICENSE
9
 */
10
11
namespace Biscolab\GoogleMaps\Http\Result;
12
13
use Biscolab\GoogleMaps\Http\GoogleMapsResultsCollection;
14
15
/**
16
 * Class GeocodingResultsCollection
17
 * @package Biscolab\GoogleMaps\Http\Result
18
 */
19
class GeocodingResultsCollection extends GoogleMapsResultsCollection {
20
21
	/**
22
	 * @var string
23
	 */
24
	protected $item_class = GeocodingResult::class;
25
}