Skip to content

Commit

Permalink
Resolve linting warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
zstein-holts committed Jun 19, 2019
1 parent 565ee22 commit 97af1c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"license": "Apache-2.0",
"homepage": "https://github.com/snoop0x7b/personator",
"require": {
"guzzlehttp/guzzle": "^6.0"
"guzzlehttp/guzzle": "^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7"
Expand Down
4 changes: 2 additions & 2 deletions lib/PersonatorResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public function hasGoodAddress() {
// Then the address is fine.
return true;
}
return false;
}
return false;
}

/**
Expand All @@ -56,8 +56,8 @@ public function hasCorrections() {
if ($record->hasCorrections()) {
return true;
}
return false;
}
return false;
}

/**
Expand Down

0 comments on commit 97af1c2

Please sign in to comment.