Skip to content

Commit

Permalink
ECS update
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Wright <[email protected]>
  • Loading branch information
betterthanclay committed Jul 17, 2024
1 parent de8f986 commit 5cc3480
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Ip.php
Original file line number Diff line number Diff line change
Expand Up @@ -591,8 +591,7 @@ public function isPrivate(): bool
foreach (
$this->v6 ?
V6Blocks::PRIVATE :
V4Blocks::PRIVATE
as $block
V4Blocks::PRIVATE as $block
) {
if ($this->isIn($block)) {
$this->private = true;
Expand All @@ -618,8 +617,7 @@ public function isReserved(): bool
foreach (
$this->v6 ?
V6Blocks::RESERVED :
V4Blocks::RESERVED
as $block
V4Blocks::RESERVED as $block
) {
if ($this->isIn($block)) {
$this->reserved = true;
Expand Down

0 comments on commit 5cc3480

Please sign in to comment.