From 58c0a6c76718794856f7049cf066fdda4e984c49 Mon Sep 17 00:00:00 2001 From: William DURAND Date: Mon, 21 Oct 2013 14:01:32 +0200 Subject: [PATCH] Fix CS --- tests/JsonpCallbackValidatorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/JsonpCallbackValidatorTest.php b/tests/JsonpCallbackValidatorTest.php index b2b93e8..29df3aa 100644 --- a/tests/JsonpCallbackValidatorTest.php +++ b/tests/JsonpCallbackValidatorTest.php @@ -37,7 +37,7 @@ public static function dataProviderForTestValidate() array('array_of_functions["key"]', self::IS_VALID), array('_function', self::IS_VALID), array('petersCallback1412331422[12]', self::IS_VALID), - array('(function xss(x) {evil()})', self::IS_INVALID), + array('(function xss(x){evil()})', self::IS_INVALID), array('', self::IS_INVALID), array('alert()', self::IS_INVALID), array('test()', self::IS_INVALID),