antograssiot 11 years ago
parent
commit
2db36839ec

+ 1 - 0
src/TestSuite/IntegrationTestCase.php

@@ -239,6 +239,7 @@ abstract class IntegrationTestCase extends TestCase {
  * @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);

+ 2 - 0
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'];
 	}
+
 }
 
 /**