summaryrefslogtreecommitdiffstats
path: root/tests/apps.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/apps.php')
-rw-r--r--tests/apps.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/apps.php b/tests/apps.php
index 1ed2a6bdde6..27bd428d949 100644
--- a/tests/apps.php
+++ b/tests/apps.php
@@ -30,8 +30,9 @@ function loadDirectory($path) {
function getSubclasses($parentClassName) {
$classes = [];
foreach (get_declared_classes() as $className) {
- if (is_subclass_of($className, $parentClassName))
+ if (is_subclass_of($className, $parentClassName)) {
$classes[] = $className;
+ }
}
return $classes;