Commit fc4098b8 by Alexander Makarov

Code style

parent 9973a2fa
...@@ -15,7 +15,7 @@ class ExceptionTest extends TestCase ...@@ -15,7 +15,7 @@ class ExceptionTest extends TestCase
$this->assertEquals('bar', $array['message']); $this->assertEquals('bar', $array['message']);
$this->assertEquals('foo', $array['previous']['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(); $array = $e->toArray();
$this->assertEquals('bar', $array['message']); $this->assertEquals('bar', $array['message']);
$this->assertEquals('foo', $array['previous']['message']); $this->assertEquals('foo', $array['previous']['message']);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment