Skip to content

Commit

Permalink
Tweak doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Nov 21, 2023
1 parent e77c663 commit 384cb24
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/Position.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,72 +18,72 @@ class Position implements Arrayable
public string $driver;

/**
* The country name.
* The location's country name.
*/
public ?string $countryName = null;

/**
* The country's currency code.
* The location's currency code.
*/
public ?string $currencyCode;

/**
* The country code.
* The location's country code.
*/
public ?string $countryCode = null;

/**
* The region code.
* The location's region code.
*/
public ?string $regionCode = null;

/**
* The region name.
* The location's region name.
*/
public ?string $regionName = null;

/**
* The city name.
* The location's city name.
*/
public ?string $cityName = null;

/**
* The zip code.
* The location's zip code.
*/
public ?string $zipCode = null;

/**
* The ISO code.
* The location's ISO code.
*/
public ?string $isoCode = null;

/**
* The postal code.
* The location's postal code.
*/
public ?string $postalCode = null;

/**
* The latitude.
* The location's latitude.
*/
public ?string $latitude = null;

/**
* The longitude.
* The location's longitude.
*/
public ?string $longitude = null;

/**
* The metro code.
* The location's metro code.
*/
public ?string $metroCode = null;

/**
* The area code.
* The location's area code.
*/
public ?string $areaCode = null;

/**
* The timezone.
* The location's timezone.
*/
public ?string $timezone = null;

Expand All @@ -100,7 +100,7 @@ public function isEmpty(): bool
}

/**
* Get the instance as an array.
* Transform the instance to an array.
*/
public function toArray(): array
{
Expand Down

0 comments on commit 384cb24

Please sign in to comment.