Skip to content

Commit 36eea41

Browse files
authored
Merge pull request #168 from maxmind/greg/fix-lints
Run new php-cs-fixer
2 parents 7826b00 + 4c192ce commit 36eea41

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/MaxMind/Db/Reader.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ class Reader
6464
* Constructs a Reader for the MaxMind DB format. The file passed to it must
6565
* be a valid MaxMind DB file such as a GeoIp2 database file.
6666
*
67-
* @param string $database
68-
* the MaxMind DB file to use
67+
* @param string $database the MaxMind DB file to use
6968
*
7069
* @throws \InvalidArgumentException for invalid database path or unknown arguments
7170
* @throws InvalidDatabaseException
@@ -110,8 +109,7 @@ public function __construct(string $database)
110109
/**
111110
* Retrieves the record for the IP address.
112111
*
113-
* @param string $ipAddress
114-
* the IP address to look up
112+
* @param string $ipAddress the IP address to look up
115113
*
116114
* @throws \BadMethodCallException if this method is called on a closed database
117115
* @throws \InvalidArgumentException if something other than a single IP address is passed to the method
@@ -136,8 +134,7 @@ public function get(string $ipAddress)
136134
/**
137135
* Retrieves the record for the IP address and its associated network prefix length.
138136
*
139-
* @param string $ipAddress
140-
* the IP address to look up
137+
* @param string $ipAddress the IP address to look up
141138
*
142139
* @throws \BadMethodCallException if this method is called on a closed database
143140
* @throws \InvalidArgumentException if something other than a single IP address is passed to the method

0 commit comments

Comments
 (0)