Completed
Push — master ( c30967...3bd52a )
by Andrii
03:06
created
tests/_bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
 
11 11
 error_reporting(E_ALL);
12 12
 
13
-require_once __DIR__ . '/../vendor/autoload.php';
14
-require_once __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
13
+require_once __DIR__.'/../vendor/autoload.php';
14
+require_once __DIR__.'/../vendor/yiisoft/yii2/Yii.php';
15 15
 
16 16
 use hiqdev\composer\config\Builder;
17 17
 use yii\console\Application;
Please login to merge, or discard this patch.
src/Query.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -105,6 +105,9 @@  discard block
 block discarded – undo
105 105
         return $rows;
106 106
     }
107 107
 
108
+    /**
109
+     * @param \yii\db\Connection $db
110
+     */
108 111
     public function searchAll($db = null)
109 112
     {
110 113
         return $this->searchBatch($db)->getData();
@@ -153,6 +156,10 @@  discard block
 block discarded – undo
153 156
         return $this;
154 157
     }
155 158
 
159
+    /**
160
+     * @param string $name
161
+     * @param boolean $value
162
+     */
156 163
     public function addOption($name, $value)
157 164
     {
158 165
         if (!isset($this->options[$name])) {
Please login to merge, or discard this patch.
src/ManualResponse.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use hiqdev\hiart\AbstractRequest;
14 14
 use hiqdev\hiart\AbstractResponse;
15
-use hiqdev\hiart\ResponseErrorException;
16 15
 
17 16
 /**
18 17
  * For creating response manually.
Please login to merge, or discard this patch.