From 05d2d62f128df5dafa3be17d9848fb9b5b146836 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 19 Sep 2016 11:35:35 +0200 Subject: [PATCH] Update generated files from Symfony --- var/SymfonyRequirements.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/var/SymfonyRequirements.php b/var/SymfonyRequirements.php index f3e8ca8eb..7e7723af3 100644 --- a/var/SymfonyRequirements.php +++ b/var/SymfonyRequirements.php @@ -739,9 +739,9 @@ class SymfonyRequirements extends RequirementCollection if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { $this->addRecommendation( - $this->getRealpathCacheSize() > 5 * 1024 * 1024, - 'realpath_cache_size should be above 5242880 in php.ini', - 'Setting "realpath_cache_size" to e.g. "5242880" or "5000k" in php.ini* may improve performance on Windows significantly in some cases.' + $this->getRealpathCacheSize() >= 5 * 1024 * 1024, + 'realpath_cache_size should be at least 5M in php.ini', + 'Setting "realpath_cache_size" to e.g. "5242880" or "5M" in php.ini* may improve performance on Windows significantly in some cases.' ); }