summaryrefslogtreecommitdiffstats
path: root/tests/lib/Hooks/LegacyEmitterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Hooks/LegacyEmitterTest.php')
-rw-r--r--tests/lib/Hooks/LegacyEmitterTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/Hooks/LegacyEmitterTest.php b/tests/lib/Hooks/LegacyEmitterTest.php
index 3b9eb26ec50..e6b751c1f74 100644
--- a/tests/lib/Hooks/LegacyEmitterTest.php
+++ b/tests/lib/Hooks/LegacyEmitterTest.php
@@ -39,8 +39,9 @@ class LegacyEmitterTest extends BasicEmitterTest {
}
public static function staticLegacyArgumentsCallBack($arguments) {
- if ($arguments['foo'] == 'foo' and $arguments['bar'] == 'bar')
+ if ($arguments['foo'] == 'foo' and $arguments['bar'] == 'bar') {
self::$emitted = true;
+ }
}
public function testLegacyHook() {