Skip to content

Commit

Permalink
Run new php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Jan 5, 2024
1 parent 7826b00 commit 4c192ce
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/MaxMind/Db/Reader.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ class Reader
* Constructs a Reader for the MaxMind DB format. The file passed to it must
* be a valid MaxMind DB file such as a GeoIp2 database file.
*
* @param string $database
* the MaxMind DB file to use
* @param string $database the MaxMind DB file to use
*
* @throws \InvalidArgumentException for invalid database path or unknown arguments
* @throws InvalidDatabaseException
Expand Down Expand Up @@ -110,8 +109,7 @@ public function __construct(string $database)
/**
* Retrieves the record for the IP address.
*
* @param string $ipAddress
* the IP address to look up
* @param string $ipAddress the IP address to look up
*
* @throws \BadMethodCallException if this method is called on a closed database
* @throws \InvalidArgumentException if something other than a single IP address is passed to the method
Expand All @@ -136,8 +134,7 @@ public function get(string $ipAddress)
/**
* Retrieves the record for the IP address and its associated network prefix length.
*
* @param string $ipAddress
* the IP address to look up
* @param string $ipAddress the IP address to look up
*
* @throws \BadMethodCallException if this method is called on a closed database
* @throws \InvalidArgumentException if something other than a single IP address is passed to the method
Expand Down

0 comments on commit 4c192ce

Please sign in to comment.