Skip to content

Commit 61f832c

Browse files
authored
Fix StyleCI (#1084)
* Update .styleci.yml * Apply StyleCI fix * Update .styleci.yml * Apply StyleCI fix * Apply StyleCI fix
1 parent 7c510c7 commit 61f832c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Model/MapboxAddress.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ final class MapboxAddress extends Address
4747
private $neighborhood;
4848

4949
/**
50-
* @param null|string $id
50+
* @param string|null $id
5151
*
5252
* @return MapboxAddress
5353
*/
@@ -62,15 +62,15 @@ public function withId(string $id = null)
6262
/**
6363
* @see https://www.mapbox.com/api-documentation/?language=cURL#response-object
6464
*
65-
* @return null|string
65+
* @return string|null
6666
*/
6767
public function getId()
6868
{
6969
return $this->id;
7070
}
7171

7272
/**
73-
* @return null|string
73+
* @return string|null
7474
*/
7575
public function getStreetName()
7676
{
@@ -133,7 +133,7 @@ public function withResultType(array $resultType)
133133
}
134134

135135
/**
136-
* @return null|string
136+
* @return string|null
137137
*/
138138
public function getFormattedAddress()
139139
{
@@ -154,7 +154,7 @@ public function withFormattedAddress(string $formattedAddress = null)
154154
}
155155

156156
/**
157-
* @return null|string
157+
* @return string|null
158158
*/
159159
public function getNeighborhood()
160160
{

0 commit comments

Comments
 (0)