From 2db36839ec288c97fda35144dcbcc86a205f795b Mon Sep 17 00:00:00 2001 From: antograssiot Date: Fri, 26 Sep 2014 10:00:49 +0200 Subject: [PATCH] more CS --- src/TestSuite/IntegrationTestCase.php | 1 + tests/TestCase/Log/Engine/FileLogTest.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/TestSuite/IntegrationTestCase.php b/src/TestSuite/IntegrationTestCase.php index 551921afc3e..15a19346531 100644 --- a/src/TestSuite/IntegrationTestCase.php +++ b/src/TestSuite/IntegrationTestCase.php @@ -239,6 +239,7 @@ public function delete($url) { * @param string $method The HTTP method * @param array|null $data The request data. * @return void + * @throws \Exception */ protected function _sendRequest($url, $method, $data = []) { $request = $this->_buildRequest($url, $method, $data); diff --git a/tests/TestCase/Log/Engine/FileLogTest.php b/tests/TestCase/Log/Engine/FileLogTest.php index 84236ad0abf..8e9ff07b709 100644 --- a/tests/TestCase/Log/Engine/FileLogTest.php +++ b/tests/TestCase/Log/Engine/FileLogTest.php @@ -34,6 +34,7 @@ class StringObject { public function __toString() { return 'Hey!'; } + } /** @@ -50,6 +51,7 @@ class JsonObject implements JsonSerializable { public function jsonSerialize() { return ['hello' => 'world']; } + } /**