Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Winkler <git@lw1.at>2021-06-18 02:36:20 +0300
committerGitHub <noreply@github.com>2021-06-18 02:36:20 +0300
commit1b409df3610fce9dff57a241e3531319b114edca (patch)
tree9761e453b9b8b2a8f40ed6ea0d1e8257bb7699fb /tests/PHPUnit/System
parentb59ff158066a657a7ed1e50b3afff6c3bfa3abba (diff)
don't pass null as a glob() flag (#17687)
Diffstat (limited to 'tests/PHPUnit/System')
-rw-r--r--tests/PHPUnit/System/CliMultiTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/PHPUnit/System/CliMultiTest.php b/tests/PHPUnit/System/CliMultiTest.php
index 2db96e4e69..10d8954c62 100644
--- a/tests/PHPUnit/System/CliMultiTest.php
+++ b/tests/PHPUnit/System/CliMultiTest.php
@@ -248,11 +248,11 @@ class CliMultiTest extends SystemTestCase
{
$dir = PIWIK_INCLUDE_PATH . '/tmp';
- $files = \_glob($dir . "/*", null);
- $subFiles = \_glob($dir . "/*/*", null);
+ $files = \_glob($dir . "/*");
+ $subFiles = \_glob($dir . "/*/*");
$files = array_merge($files, $subFiles);
return $files;
}
-} \ No newline at end of file
+}