From fc4098b89ac84de1fb32cd6a1e7271a168bdeb8e Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Tue, 4 Mar 2014 00:56:27 +0400 Subject: [PATCH] Code style --- tests/unit/framework/base/ExceptionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/framework/base/ExceptionTest.php b/tests/unit/framework/base/ExceptionTest.php index 635b55c..136fc28 100644 --- a/tests/unit/framework/base/ExceptionTest.php +++ b/tests/unit/framework/base/ExceptionTest.php @@ -15,7 +15,7 @@ class ExceptionTest extends TestCase $this->assertEquals('bar', $array['message']); $this->assertEquals('foo', $array['previous']['message']); - $e = new InvalidCallException('bar', 0 ,new UserException('foo')); + $e = new InvalidCallException('bar', 0, new UserException('foo')); $array = $e->toArray(); $this->assertEquals('bar', $array['message']); $this->assertEquals('foo', $array['previous']['message']);