Completed
Push — master ( 5dff1d...4ee1e0 )
by Andrii
01:35
created
src/storage/ClientQuery.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@
 block discarded – undo
54 54
         return $this;
55 55
     }
56 56
 
57
+    /**
58
+     * @param integer $id
59
+     */
57 60
     public function whereId($id)
58 61
     {
59 62
         return parent::andWhere(['c.obj_id' => $id]);
Please login to merge, or discard this patch.
src/storage/Client.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -119,6 +119,9 @@
 block discarded – undo
119 119
         return $this->_again;
120 120
     }
121 121
 
122
+    /**
123
+     * @param string $prop
124
+     */
122 125
     public function saveValue($prop, $value)
123 126
     {
124 127
         $params = [
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace hiam\mrdp\storage;
12 12
 
13 13
 use Yii;
14
-use yii\base\InvalidConfigException;
15 14
 use yii\db\Expression;
16 15
 
17 16
 /**
Please login to merge, or discard this patch.