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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/apps.php')
-rw-r--r--tests/apps.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/apps.php b/tests/apps.php
index 63895cbd569..1ed2a6bdde6 100644
--- a/tests/apps.php
+++ b/tests/apps.php
@@ -28,7 +28,7 @@ function loadDirectory($path) {
}
function getSubclasses($parentClassName) {
- $classes = array();
+ $classes = [];
foreach (get_declared_classes() as $className) {
if (is_subclass_of($className, $parentClassName))
$classes[] = $className;