Pass phpcs-strict on some test files (7/11)
[lhc/web/wiklou.git] / tests / phpunit / includes / htmlform / HTMLCheckMatrixTest.php
index c41acef..6384e3a 100644 (file)
@@ -30,8 +30,9 @@ class HtmlCheckMatrixTest extends MediaWikiTestCase {
        public function testValidateCallsUserDefinedValidationCallback() {
                $called = false;
                $field = new HTMLCheckMatrix( self::$defaultOptions + array(
-                               'validation-callback' => function() use ( &$called ) {
+                               'validation-callback' => function () use ( &$called ) {
                                                $called = true;
+
                                                return false;
                                        },
                        ) );