Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use phpDocumentor2 instead of ApiGen #128

Merged
merged 12 commits into from
Mar 13, 2019
Prev Previous commit
Next Next commit
Use https for more links
  • Loading branch information
horgh committed Mar 12, 2019
commit bbb5af71bfce0ae36f94908e298d50eeba1d40c7
2 changes: 1 addition & 1 deletion src/Model/City.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* The only difference between the City and Insights model classes is which
* fields in each record may be populated. See
* http://dev.maxmind.com/geoip/geoip2/web-services more details.
* https://dev.maxmind.com/geoip/geoip2/web-services more details.
*
* @property-read \GeoIp2\Record\City $city City data for the requested IP
* address.
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Country.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* The only difference between the City and Insights model classes is which
* fields in each record may be populated. See
* http://dev.maxmind.com/geoip/geoip2/web-services more details.
* https://dev.maxmind.com/geoip/geoip2/web-services more details.
*
* @property-read \GeoIp2\Record\Continent $continent Continent data for the
* requested IP address.
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Enterprise.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* The only difference between the City and Enterprise model classes is which
* fields in each record may be populated. See
* http://dev.maxmind.com/geoip/geoip2/web-services more details.
* https://dev.maxmind.com/geoip/geoip2/web-services more details.
*
* @property-read \GeoIp2\Record\City $city City data for the requested IP
* address.
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Insights.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* The only difference between the City and Insights model classes is which
* fields in each record may be populated. See
* http://dev.maxmind.com/geoip/geoip2/web-services more details.
* https://dev.maxmind.com/geoip/geoip2/web-services more details.
*
* @property-read \GeoIp2\Record\City $city City data for the requested IP
* address.
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Country.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* member state of the European Union. This attribute is returned by all
* location services and databases.
* @property-read string|null $isoCode The
* {@link * http://en.wikipedia.org/wiki/ISO_3166-1 two-character ISO 3166-1 alpha
* {@link * https://en.wikipedia.org/wiki/ISO_3166-1 two-character ISO 3166-1 alpha
* code} for the country. This attribute is returned by all location services
* and databases.
* @property-read string|null $name The name of the country based on the locales
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Location.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* {@link * https://developers.google.com/adwords/api/docs/appendix/cities-DMAregions
* Google AdWords API}.
* @property-read string|null $timeZone The time zone associated with location, as
* specified by the {@link http://www.iana.org/time-zones IANA Time Zone
* specified by the {@link https://www.iana.org/time-zones IANA Time Zone
* Database}, e.g., "America/New_York".
*/
class Location extends AbstractRecord
Expand Down
2 changes: 1 addition & 1 deletion src/Record/RepresentedCountry.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @property-read bool $isInEuropeanUnion This is true if the country is a
* member state of the European Union. This attribute is returned by all
* location services and databases.
* @property-read string|null $isoCode The {@link http://en.wikipedia.org/wiki/ISO_3166-1
* @property-read string|null $isoCode The {@link https://en.wikipedia.org/wiki/ISO_3166-1
* two-character ISO 3166-1 alpha code} for the country.
* @property-read string|null $name The name of the country based on the locales list
* passed to the constructor.
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Subdivision.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Country.
* @property-read string|null $isoCode This is a string up to three characters long
* contain the subdivision portion of the
* {@link * http://en.wikipedia.org/wiki/ISO_3166-2 ISO 3166-2 code}. This attribute
* {@link * https://en.wikipedia.org/wiki/ISO_3166-2 ISO 3166-2 code}. This attribute
* is returned by all location databases and services except Country.
* @property-read string|null $name The name of the subdivision based on the
* locales list passed to the constructor. This attribute is returned by all
Expand Down
4 changes: 2 additions & 2 deletions src/Record/Traits.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
* This record is returned by all location services and databases.
*
* @property-read int|null $autonomousSystemNumber The
* {@link * http://en.wikipedia.org/wiki/Autonomous_system_(Internet) autonomous
* {@link * https://en.wikipedia.org/wiki/Autonomous_system_(Internet) autonomous
* system number} associated with the IP address. This attribute is only
* available from the City and Insights web service and the GeoIP2
* Enterprise database.
* @property-read string|null $autonomousSystemOrganization The organization
* associated with the registered {@link * http://en.wikipedia.org/wiki/Autonomous_system_(Internet) autonomous
* associated with the registered {@link * https://en.wikipedia.org/wiki/Autonomous_system_(Internet) autonomous
* system number} for the IP address. This attribute is only available from
* the City and Insights web service and the GeoIP2 Enterprise
* database.
Expand Down