1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 01:06:48 +02:00

[ticket/15392] Replace remaining dirname(__FILE__) with __DIR__

PHPBB3-15392
This commit is contained in:
Marc Alexander
2021-03-04 16:34:52 +01:00
parent 20d4a86016
commit 7a310cc7d9
18 changed files with 25 additions and 25 deletions

View File

@@ -26,7 +26,7 @@ class phpbb_cache_file_driver_test extends phpbb_cache_common_test_case
{
parent::setUp();
$this->cache_dir = dirname(__FILE__) . '/../tmp/cache/';
$this->cache_dir = __DIR__ . '/../tmp/cache/';
if (file_exists($this->cache_dir))
{