Skip to content

Commit e47efe9

Browse files
committed
Fix MaxMindBinaryProvider
1 parent 75da612 commit e47efe9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Geocoder/Provider/MaxMindBinaryProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ public function __construct($datFile, $openFlag = null)
4646
}
4747

4848
if (false === is_file($datFile)) {
49-
throw new InvalidArgumentException(sprintf('Given MaxMind dat file "%s" does not exist.', $this->datFile));
49+
throw new InvalidArgumentException(sprintf('Given MaxMind dat file "%s" does not exist.', $datFile));
5050
}
5151

5252
if (false === is_readable($datFile)) {
53-
throw new InvalidArgumentException(sprintf('Given MaxMind dat file "%s" does not readable.', $this->datFile));
53+
throw new InvalidArgumentException(sprintf('Given MaxMind dat file "%s" does not readable.', $datFile));
5454
}
5555

5656
$this->datFile = $datFile;

0 commit comments

Comments
 (0)