diff --git a/composer.json b/composer.json index 2bf1df6..c564771 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Client of LimeSurvey API", "type": "library", "license": "MIT", - "version": "0.0.11", + "version": "0.0.12", "authors": [ { "name": "Meritoo", diff --git a/src/Configuration/ConnectionConfiguration.php b/src/Configuration/ConnectionConfiguration.php index 0faa62e..1e40bf0 100644 --- a/src/Configuration/ConnectionConfiguration.php +++ b/src/Configuration/ConnectionConfiguration.php @@ -77,6 +77,7 @@ class ConnectionConfiguration * turned off. * @param bool $verifySslCertificate (optional) If is set to true, the SSL certificate verification is turned * on. Otherwise - turned off. + * @throws InvalidUrlException */ public function __construct($baseUrl, $username, $password, $debugMode = false, $verifySslCertificate = true) { diff --git a/tests/Result/Item/SurveySummaryTest.php b/tests/Result/Item/SurveySummaryTest.php index 07534be..7389f6a 100644 --- a/tests/Result/Item/SurveySummaryTest.php +++ b/tests/Result/Item/SurveySummaryTest.php @@ -32,7 +32,7 @@ class SurveySummaryTest extends BaseTestCase * @param array $rawData Raw data of survey's summary * @dataProvider provideRawData */ - public function testCreateOfTheSurveySummary($rawData) + public function testCreateOfTheSurveySummary(array $rawData) { $processor = new ResultProcessor(); $processed = $processor->process(MethodType::GET_SUMMARY, $rawData);