aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorv12mike <github@ingenious.co.nz>2018-07-26 06:09:02 +0100
committerMarc Alexander <admin@m-a-styles.de>2018-09-16 16:05:51 +0200
commit7f1f64b1dcebb28ab575e1905676471b473d08ed (patch)
treef1c3e39305db8abc1d30062938c8964993c6df71
parentbf9af922208ad93c2afbe4fa9462f8914c8d4363 (diff)
downloadforums-7f1f64b1dcebb28ab575e1905676471b473d08ed.tar
forums-7f1f64b1dcebb28ab575e1905676471b473d08ed.tar.gz
forums-7f1f64b1dcebb28ab575e1905676471b473d08ed.tar.bz2
forums-7f1f64b1dcebb28ab575e1905676471b473d08ed.tar.xz
forums-7f1f64b1dcebb28ab575e1905676471b473d08ed.zip
[ticket/15726] Implement selective purge in APCu cache driver
Fix whitespace PHPBB3-15726
-rw-r--r--phpBB/phpbb/cache/driver/apcu.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/cache/driver/apcu.php b/phpBB/phpbb/cache/driver/apcu.php
index e40d5a376c..3a63a97e4e 100644
--- a/phpBB/phpbb/cache/driver/apcu.php
+++ b/phpBB/phpbb/cache/driver/apcu.php
@@ -25,9 +25,9 @@ class apcu extends \phpbb\cache\driver\memory
*/
function purge()
{
- /*
- Use an iterator to selectively clear our cache entries without disturbing
- any other cache users (e.g. other phpBB boards hosted on this server)
+ /*
+ * Use an iterator to selectively clear our cache entries without disturbing
+ * any other cache users (e.g. other phpBB boards hosted on this server)
*/
apcu_delete(new \APCUIterator('#^' . $this->key_prefix . '#'));