From 6233359c571942d66922255a73443ea912df0754 Mon Sep 17 00:00:00 2001 From: Jamie Isaacs Date: Mon, 8 Dec 2014 22:55:53 -0800 Subject: [PATCH] Fixing for PSR-2. --- tests/ValidatorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ValidatorTest.php b/tests/ValidatorTest.php index 70f165f..1e926ae 100644 --- a/tests/ValidatorTest.php +++ b/tests/ValidatorTest.php @@ -16,7 +16,7 @@ class ValidatorTest extends \PHPUnit_Framework_TestCase Validator::checkIfNull('XXX', 'notNullValue'); Validator::checkIfNull([], 'notNullValue'); Validator::checkIfNull(new \stdClass(), 'notNullValue'); - Validator::checkIfNull(function() { + Validator::checkIfNull(function () { }, 'notNullValue'); } }