Test Failed
Push — master ( 5d6517...76f70d )
by Roberto
03:19 queued 10s
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/PlacesResult.php 1 patch
Indentation   +94 added lines, -94 removed lines patch added patch discarded remove patch
@@ -37,99 +37,99 @@
 block discarded – undo
37 37
 class PlacesResult extends GoogleMapsResult
38 38
 {
39 39
 
40
-	/**
41
-	 * @var null|string
42
-	 */
43
-	protected $formatted_address = null;
44
-
45
-	/**
46
-	 * @var string
47
-	 */
48
-	protected $name = '';
49
-
50
-	/**
51
-	 * @var Geometry
52
-	 */
53
-	protected $geometry = null;
54
-
55
-	/**
56
-	 * @var string
57
-	 */
58
-	protected $icon = '';
59
-
60
-	/**
61
-	 * @var string
62
-	 */
63
-	protected $id = '';
64
-
65
-	/**
66
-	 * @var PhotoCollection
67
-	 */
68
-	protected $photos = null;
69
-
70
-	/**
71
-	 * @var string
72
-	 */
73
-	protected $place_id = '';
74
-
75
-	/**
76
-	 * @var string
77
-	 */
78
-	protected $reference = '';
79
-
80
-	/**
81
-	 * @var string
82
-	 */
83
-	protected $vicinity = '';
84
-
85
-	/**
86
-	 * @var array
87
-	 */
88
-	protected $types = [];
89
-
90
-	/**
91
-	 * @var array
92
-	 */
93
-	protected $opening_hours = [];
94
-
95
-	/**
96
-	 * @var int
97
-	 */
98
-	protected $price_level = 0;
99
-
100
-	/**
101
-	 * @var bool
102
-	 */
103
-	protected $permanently_closed = false;
104
-
105
-	/**
106
-	 * @var array
107
-	 */
108
-	protected $typeCheck = [
109
-		GoogleMapsResultFields::FORMATTED_ADDRESS  => 'string',
110
-		GoogleMapsResultFields::NAME               => 'string',
111
-		GoogleMapsResultFields::GEOMETRY           => Geometry::class,
112
-		GoogleMapsResultFields::ICON               => 'string',
113
-		GoogleMapsResultFields::ID                 => 'string',
114
-		GoogleMapsResultFields::PHOTOS             => PhotoCollection::class,
115
-		GoogleMapsResultFields::PLACE_ID           => 'string',
116
-		GoogleMapsResultFields::REFERENCE          => 'string',
117
-		GoogleMapsResultFields::VICINITY           => 'string',
118
-		GoogleMapsResultFields::TYPES              => 'array',
119
-		GoogleMapsResultFields::OPENING_HOURS      => 'json',
120
-		GoogleMapsResultFields::PRICE_LEVEL        => 'int',
121
-		GoogleMapsResultFields::RATING             => 'float',
122
-		GoogleMapsResultFields::PERMANENTLY_CLOSED => 'bool',
123
-		GoogleMapsResultFields::PLUS_CODE          => 'array',
124
-	];
125
-
126
-	/**
127
-	 * @return bool|null
128
-	 */
129
-	public function getPermanentlyClose(): bool
130
-	{
131
-
132
-		return $this->permanently_closed ?? false;
133
-	}
40
+    /**
41
+     * @var null|string
42
+     */
43
+    protected $formatted_address = null;
44
+
45
+    /**
46
+     * @var string
47
+     */
48
+    protected $name = '';
49
+
50
+    /**
51
+     * @var Geometry
52
+     */
53
+    protected $geometry = null;
54
+
55
+    /**
56
+     * @var string
57
+     */
58
+    protected $icon = '';
59
+
60
+    /**
61
+     * @var string
62
+     */
63
+    protected $id = '';
64
+
65
+    /**
66
+     * @var PhotoCollection
67
+     */
68
+    protected $photos = null;
69
+
70
+    /**
71
+     * @var string
72
+     */
73
+    protected $place_id = '';
74
+
75
+    /**
76
+     * @var string
77
+     */
78
+    protected $reference = '';
79
+
80
+    /**
81
+     * @var string
82
+     */
83
+    protected $vicinity = '';
84
+
85
+    /**
86
+     * @var array
87
+     */
88
+    protected $types = [];
89
+
90
+    /**
91
+     * @var array
92
+     */
93
+    protected $opening_hours = [];
94
+
95
+    /**
96
+     * @var int
97
+     */
98
+    protected $price_level = 0;
99
+
100
+    /**
101
+     * @var bool
102
+     */
103
+    protected $permanently_closed = false;
104
+
105
+    /**
106
+     * @var array
107
+     */
108
+    protected $typeCheck = [
109
+        GoogleMapsResultFields::FORMATTED_ADDRESS  => 'string',
110
+        GoogleMapsResultFields::NAME               => 'string',
111
+        GoogleMapsResultFields::GEOMETRY           => Geometry::class,
112
+        GoogleMapsResultFields::ICON               => 'string',
113
+        GoogleMapsResultFields::ID                 => 'string',
114
+        GoogleMapsResultFields::PHOTOS             => PhotoCollection::class,
115
+        GoogleMapsResultFields::PLACE_ID           => 'string',
116
+        GoogleMapsResultFields::REFERENCE          => 'string',
117
+        GoogleMapsResultFields::VICINITY           => 'string',
118
+        GoogleMapsResultFields::TYPES              => 'array',
119
+        GoogleMapsResultFields::OPENING_HOURS      => 'json',
120
+        GoogleMapsResultFields::PRICE_LEVEL        => 'int',
121
+        GoogleMapsResultFields::RATING             => 'float',
122
+        GoogleMapsResultFields::PERMANENTLY_CLOSED => 'bool',
123
+        GoogleMapsResultFields::PLUS_CODE          => 'array',
124
+    ];
125
+
126
+    /**
127
+     * @return bool|null
128
+     */
129
+    public function getPermanentlyClose(): bool
130
+    {
131
+
132
+        return $this->permanently_closed ?? false;
133
+    }
134 134
 
135 135
 }
136 136
\ 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 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 	/**
21 21
 	 * @var string
22 22
 	 */
23
-	const TEXTQUERY   = "textquery";
23
+	const TEXTQUERY = "textquery";
24 24
 
25 25
 	/**
26 26
 	 * @var string
Please login to merge, or discard this patch.