diff options
Diffstat (limited to 'tests/apps.php')
-rw-r--r-- | tests/apps.php | 2 |
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; |