summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-foundation/RequestMatcher.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2017-12-07 09:16:01 +0000
committerGreg Roach <fisharebest@gmail.com>2017-12-07 09:16:01 +0000
commit3e983931fdde6db78f1490364106d7d46e77dea7 (patch)
treead258a855a10b1096e7ff4fc4d5dc377b628b3ce /vendor/symfony/http-foundation/RequestMatcher.php
parentea51178689e8fd2aabc1dc599813355ef8b10ceb (diff)
downloadwebtrees-3e983931fdde6db78f1490364106d7d46e77dea7.tar.gz
webtrees-3e983931fdde6db78f1490364106d7d46e77dea7.tar.bz2
webtrees-3e983931fdde6db78f1490364106d7d46e77dea7.zip
Update to PhpUnit 6, for PHP 7
Diffstat (limited to 'vendor/symfony/http-foundation/RequestMatcher.php')
-rw-r--r--vendor/symfony/http-foundation/RequestMatcher.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/symfony/http-foundation/RequestMatcher.php b/vendor/symfony/http-foundation/RequestMatcher.php
index 076d077c7d..aa4f67b58b 100644
--- a/vendor/symfony/http-foundation/RequestMatcher.php
+++ b/vendor/symfony/http-foundation/RequestMatcher.php
@@ -173,6 +173,6 @@ class RequestMatcher implements RequestMatcherInterface
// Note to future implementors: add additional checks above the
// foreach above or else your check might not be run!
- return 0 === count($this->ips);
+ return count($this->ips) === 0;
}
}