comparison vendor/symfony/http-foundation/RequestMatcher.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
171 return true; 171 return true;
172 } 172 }
173 173
174 // Note to future implementors: add additional checks above the 174 // Note to future implementors: add additional checks above the
175 // foreach above or else your check might not be run! 175 // foreach above or else your check might not be run!
176 return count($this->ips) === 0; 176 return 0 === count($this->ips);
177 } 177 }
178 } 178 }