Completed
Push — master ( d06b83...927bbf )
by Nekrasov
03:58
created
src/Models/BitrixModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
     /**
127 127
      * Save model to database.
128 128
      *
129
-     * @param array $selectedFields save only these fields instead of all.
129
+     * @param string[] $selectedFields save only these fields instead of all.
130 130
      * @return bool
131 131
      * @throws ExceptionFromBitrix
132 132
      */
Please login to merge, or discard this patch.
src/Queries/BaseQuery.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     /**
223 223
      * Setter for select.
224 224
      *
225
-     * @param $value
225
+     * @param string $value
226 226
      *
227 227
      * @return $this
228 228
      */
@@ -443,8 +443,8 @@  discard block
 block discarded – undo
443 443
      * Set $array[$new] as $array[$old] and delete $array[$old].
444 444
      *
445 445
      * @param array $array
446
-     * @param $old
447
-     * @param $new
446
+     * @param string $old
447
+     * @param string $new
448 448
      *
449 449
      * return null
450 450
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use BadMethodCallException;
7 7
 use Bitrix\Main\Data\Cache;
8 8
 use Closure;
9
-use CPHPCache;
10 9
 use Illuminate\Pagination\Paginator;
11 10
 use Illuminate\Pagination\LengthAwarePaginator;
12 11
 use Illuminate\Support\Collection;
Please login to merge, or discard this patch.