aboutsummaryrefslogtreecommitdiffhomepage
path: root/var
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-19 11:35:35 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-19 11:35:35 +0200
commit05d2d62f128df5dafa3be17d9848fb9b5b146836 (patch)
treec9b1ae3c5610a39611bf6effa219f3d5b66943d5 /var
parentd7b4b2c72cd1c9ad967ecfec668d5b0b9e794149 (diff)
downloadwallabag-05d2d62f128df5dafa3be17d9848fb9b5b146836.tar.gz
wallabag-05d2d62f128df5dafa3be17d9848fb9b5b146836.tar.zst
wallabag-05d2d62f128df5dafa3be17d9848fb9b5b146836.zip
Update generated files from Symfony
Diffstat (limited to 'var')
-rw-r--r--var/SymfonyRequirements.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/var/SymfonyRequirements.php b/var/SymfonyRequirements.php
index f3e8ca8e..7e7723af 100644
--- a/var/SymfonyRequirements.php
+++ b/var/SymfonyRequirements.php
@@ -739,9 +739,9 @@ class SymfonyRequirements extends RequirementCollection
739 739
740 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { 740 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
741 $this->addRecommendation( 741 $this->addRecommendation(
742 $this->getRealpathCacheSize() > 5 * 1024 * 1024, 742 $this->getRealpathCacheSize() >= 5 * 1024 * 1024,
743 'realpath_cache_size should be above 5242880 in php.ini', 743 'realpath_cache_size should be at least 5M in php.ini',
744 'Setting "<strong>realpath_cache_size</strong>" to e.g. "<strong>5242880</strong>" or "<strong>5000k</strong>" in php.ini<a href="#phpini">*</a> may improve performance on Windows significantly in some cases.' 744 'Setting "<strong>realpath_cache_size</strong>" to e.g. "<strong>5242880</strong>" or "<strong>5M</strong>" in php.ini<a href="#phpini">*</a> may improve performance on Windows significantly in some cases.'
745 ); 745 );
746 } 746 }
747 747