Test Failed
Pull Request — master (#7)
by
unknown
05:41
created
src/Http/Result/GeocodingResultsCollection.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
 class GeocodingResultsCollection extends GoogleMapsResultsCollection
20 20
 {
21 21
 
22
-	/**
23
-	 * @var string
24
-	 */
25
-	protected $item_class = GeocodingResult::class;
22
+    /**
23
+     * @var string
24
+     */
25
+    protected $item_class = GeocodingResult::class;
26 26
 }
27 27
\ No newline at end of file
Please login to merge, or discard this patch.
src/Http/Result/ElevationResultsCollection.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 class ElevationResultsCollection extends GoogleMapsResultsCollection
22 22
 {
23 23
 
24
-	/**
25
-	 * @var string
26
-	 */
27
-	protected $item_class = ElevationResult::class;
24
+    /**
25
+     * @var string
26
+     */
27
+    protected $item_class = ElevationResult::class;
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.
src/Http/Result/PlaceResultsCollection.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 class PlaceResultsCollection extends GoogleMapsResultsCollection
22 22
 {
23 23
 
24
-	/**
25
-	 * @var string
26
-	 */
27
-	protected $item_class = PlacesResult::class;
24
+    /**
25
+     * @var string
26
+     */
27
+    protected $item_class = PlacesResult::class;
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.
src/Http/Result/GeocodingResult.php 1 patch
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -35,49 +35,49 @@
 block discarded – undo
35 35
 class GeocodingResult extends GoogleMapsResult
36 36
 {
37 37
 
38
-	/**
39
-	 * @var Address
40
-	 */
41
-	protected $address_components = null;
38
+    /**
39
+     * @var Address
40
+     */
41
+    protected $address_components = null;
42 42
 
43
-	/**
44
-	 * @var string
45
-	 */
46
-	protected $formatted_address = null;
43
+    /**
44
+     * @var string
45
+     */
46
+    protected $formatted_address = null;
47 47
 
48
-	/**
49
-	 * @var Geometry
50
-	 */
51
-	protected $geometry = null;
48
+    /**
49
+     * @var Geometry
50
+     */
51
+    protected $geometry = null;
52 52
 
53
-	/**
54
-	 * @var string
55
-	 */
56
-	protected $place_id = null;
53
+    /**
54
+     * @var string
55
+     */
56
+    protected $place_id = null;
57 57
 
58
-	/**
59
-	 * @var array
60
-	 */
61
-	protected $types = null;
58
+    /**
59
+     * @var array
60
+     */
61
+    protected $types = null;
62 62
 
63
-	/**
64
-	 * @var array
65
-	 */
66
-	protected $typeCheck = [
67
-		GoogleMapsResultFields::GEOMETRY           => Geometry::class,
68
-		GoogleMapsResultFields::ADDRESS_COMPONENTS => Address::class,
69
-		GoogleMapsResultFields::FORMATTED_ADDRESS  => 'string',
70
-		GoogleMapsResultFields::PLACE_ID           => 'string',
71
-		GoogleMapsResultFields::TYPES              => 'array'
72
-	];
63
+    /**
64
+     * @var array
65
+     */
66
+    protected $typeCheck = [
67
+        GoogleMapsResultFields::GEOMETRY           => Geometry::class,
68
+        GoogleMapsResultFields::ADDRESS_COMPONENTS => Address::class,
69
+        GoogleMapsResultFields::FORMATTED_ADDRESS  => 'string',
70
+        GoogleMapsResultFields::PLACE_ID           => 'string',
71
+        GoogleMapsResultFields::TYPES              => 'array'
72
+    ];
73 73
 
74
-	/**
75
-	 * @return Address
76
-	 */
77
-	public function getAddress(): Address
78
-	{
74
+    /**
75
+     * @return Address
76
+     */
77
+    public function getAddress(): Address
78
+    {
79 79
 
80
-		return $this->getAddressComponents();
81
-	}
80
+        return $this->getAddressComponents();
81
+    }
82 82
 
83 83
 }
84 84
\ No newline at end of file
Please login to merge, or discard this patch.
src/Http/Result/ElevationResult.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -30,28 +30,28 @@
 block discarded – undo
30 30
 class ElevationResult extends GoogleMapsResult
31 31
 {
32 32
 
33
-	/**
34
-	 * @var float
35
-	 */
36
-	protected $elevation = null;
37
-
38
-	/**
39
-	 * @var Location
40
-	 */
41
-	protected $location = null;
42
-
43
-	/**
44
-	 * @var float
45
-	 */
46
-	protected $resolution = null;
47
-
48
-	/**
49
-	 * @var array
50
-	 */
51
-	protected $typeCheck = [
52
-		GoogleMapsResultFields::LOCATION   => Location::class,
53
-		GoogleMapsResultFields::ELEVATION  => 'float',
54
-		GoogleMapsResultFields::RESOLUTION => 'float',
55
-	];
33
+    /**
34
+     * @var float
35
+     */
36
+    protected $elevation = null;
37
+
38
+    /**
39
+     * @var Location
40
+     */
41
+    protected $location = null;
42
+
43
+    /**
44
+     * @var float
45
+     */
46
+    protected $resolution = null;
47
+
48
+    /**
49
+     * @var array
50
+     */
51
+    protected $typeCheck = [
52
+        GoogleMapsResultFields::LOCATION   => Location::class,
53
+        GoogleMapsResultFields::ELEVATION  => 'float',
54
+        GoogleMapsResultFields::RESOLUTION => 'float',
55
+    ];
56 56
 
57 57
 }
58 58
\ No newline at end of file
Please login to merge, or discard this patch.
src/Http/GoogleMapsClient.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -17,49 +17,49 @@
 block discarded – undo
17 17
 class GoogleMapsClient
18 18
 {
19 19
 
20
-	/**
21
-	 * @var Client
22
-	 */
23
-	protected $client = null;
20
+    /**
21
+     * @var Client
22
+     */
23
+    protected $client = null;
24 24
 
25
-	/**
26
-	 * GeocoderClient constructor.
27
-	 */
28
-	public function __construct()
29
-	{
25
+    /**
26
+     * GeocoderClient constructor.
27
+     */
28
+    public function __construct()
29
+    {
30 30
 
31
-		$this->setClient(new Client());
32
-	}
31
+        $this->setClient(new Client());
32
+    }
33 33
 
34
-	/**
35
-	 * @param null $client
36
-	 *
37
-	 * @return GoogleMapsClient
38
-	 */
39
-	public function setClient($client)
40
-	{
34
+    /**
35
+     * @param null $client
36
+     *
37
+     * @return GoogleMapsClient
38
+     */
39
+    public function setClient($client)
40
+    {
41 41
 
42
-		$this->client = $client;
42
+        $this->client = $client;
43 43
 
44
-		return $this;
45
-	}
44
+        return $this;
45
+    }
46 46
 
47
-	/**
48
-	 * @param string      $url
49
-	 * @param null|string $query
50
-	 *
51
-	 * @return \Biscolab\GoogleMaps\Http\GoogleMapsResponse
52
-	 */
53
-	public function get(string $url, ?string $query = null): GoogleMapsResponse
54
-	{
47
+    /**
48
+     * @param string      $url
49
+     * @param null|string $query
50
+     *
51
+     * @return \Biscolab\GoogleMaps\Http\GoogleMapsResponse
52
+     */
53
+    public function get(string $url, ?string $query = null): GoogleMapsResponse
54
+    {
55 55
 
56
-		$client_params = $query ? [
57
-			'query' => $query
58
-		] : null;
56
+        $client_params = $query ? [
57
+            'query' => $query
58
+        ] : null;
59 59
 
60
-		/** @var Response $res */
61
-		$res = $this->client->request(GoogleMapsRequestMethodValues::GET, $url, $client_params);
60
+        /** @var Response $res */
61
+        $res = $this->client->request(GoogleMapsRequestMethodValues::GET, $url, $client_params);
62 62
 
63
-		return new GoogleMapsResponse($res);
64
-	}
63
+        return new GoogleMapsResponse($res);
64
+    }
65 65
 }
66 66
\ No newline at end of file
Please login to merge, or discard this patch.
src/Http/GoogleMapsResultsCollection.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -19,21 +19,21 @@
 block discarded – undo
19 19
 class GoogleMapsResultsCollection extends AbstractCollection
20 20
 {
21 21
 
22
-	/**
23
-	 * @var string
24
-	 */
25
-	protected $item_class = GoogleMapsResult::class;
22
+    /**
23
+     * @var string
24
+     */
25
+    protected $item_class = GoogleMapsResult::class;
26 26
 
27
-	/**
28
-	 * @param $item
29
-	 *
30
-	 * @return GoogleMapsResult
31
-	 */
32
-	protected function parseItem($item): GoogleMapsResult
33
-	{
27
+    /**
28
+     * @param $item
29
+     *
30
+     * @return GoogleMapsResult
31
+     */
32
+    protected function parseItem($item): GoogleMapsResult
33
+    {
34 34
 
35
-		$item_class = $this->item_class;
35
+        $item_class = $this->item_class;
36 36
 
37
-		return new $item_class($item);
38
-	}
37
+        return new $item_class($item);
38
+    }
39 39
 }
40 40
\ No newline at end of file
Please login to merge, or discard this patch.
src/Values/PlaceInputTypeValues.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -17,13 +17,13 @@
 block discarded – undo
17 17
 class PlaceInputTypeValues
18 18
 {
19 19
 
20
-	/**
21
-	 * @var string
22
-	 */
23
-	const TEXTQUERY   = "textquery";
20
+    /**
21
+     * @var string
22
+     */
23
+    const TEXTQUERY   = "textquery";
24 24
 
25
-	/**
26
-	 * @var string
27
-	 */
28
-	const PHONENUMBER = "phonenumber";
25
+    /**
26
+     * @var string
27
+     */
28
+    const PHONENUMBER = "phonenumber";
29 29
 }
30 30
\ No newline at end of file
Please login to merge, or discard this patch.
src/Values/GoogleMapsResponseStatusValues.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -19,39 +19,39 @@
 block discarded – undo
19 19
 class GoogleMapsResponseStatusValues
20 20
 {
21 21
 
22
-	/**
23
-	 * string: OK
24
-	 */
25
-	const OK = 'OK';
26
-
27
-	/**
28
-	 * string: REQUEST_DENIED
29
-	 */
30
-	const REQUEST_DENIED = 'REQUEST_DENIED';
31
-
32
-	/**
33
-	 * string: ZERO_RESULTS
34
-	 */
35
-	const ZERO_RESULTS = 'ZERO_RESULTS';
36
-
37
-	/**
38
-	 * string: OVER_DAILY_LIMIT
39
-	 */
40
-	const OVER_DAILY_LIMIT = 'OVER_DAILY_LIMIT';
41
-
42
-	/**
43
-	 * string: OVER_QUERY_LIMIT
44
-	 */
45
-	const OVER_QUERY_LIMIT = 'OVER_QUERY_LIMIT';
46
-
47
-	/**
48
-	 * string: INVALID_REQUEST
49
-	 */
50
-	const INVALID_REQUEST = 'INVALID_REQUEST';
51
-
52
-	/**
53
-	 * string: UNKNOWN_ERROR
54
-	 */
55
-	const UNKNOWN_ERROR = 'UNKNOWN_ERROR';
22
+    /**
23
+     * string: OK
24
+     */
25
+    const OK = 'OK';
26
+
27
+    /**
28
+     * string: REQUEST_DENIED
29
+     */
30
+    const REQUEST_DENIED = 'REQUEST_DENIED';
31
+
32
+    /**
33
+     * string: ZERO_RESULTS
34
+     */
35
+    const ZERO_RESULTS = 'ZERO_RESULTS';
36
+
37
+    /**
38
+     * string: OVER_DAILY_LIMIT
39
+     */
40
+    const OVER_DAILY_LIMIT = 'OVER_DAILY_LIMIT';
41
+
42
+    /**
43
+     * string: OVER_QUERY_LIMIT
44
+     */
45
+    const OVER_QUERY_LIMIT = 'OVER_QUERY_LIMIT';
46
+
47
+    /**
48
+     * string: INVALID_REQUEST
49
+     */
50
+    const INVALID_REQUEST = 'INVALID_REQUEST';
51
+
52
+    /**
53
+     * string: UNKNOWN_ERROR
54
+     */
55
+    const UNKNOWN_ERROR = 'UNKNOWN_ERROR';
56 56
 
57 57
 }
58 58
\ No newline at end of file
Please login to merge, or discard this patch.