Completed
Push — master ( 72ec54...05d808 )
by Nate
06:35 queued 04:36
created
src/helpers/QueryHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      * Standard param parsing.
56 56
      *
57 57
      * @param $value
58
-     * @param $join
58
+     * @param string $join
59 59
      * @return bool
60 60
      */
61 61
     public static function parseBaseParam(&$value, &$join): bool
Please login to merge, or discard this patch.
src/db/traits/OrderBy.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     /**
49 49
      * Applies the 'fixedOrder' and 'orderBy' params to the query being prepared.
50 50
      *
51
-     * @param Connection|null $db The database connection used to generate the SQL statement.
51
+     * @param Connection $db The database connection used to generate the SQL statement.
52 52
      * If this parameter is not given, the `db` application component will be used.
53 53
      */
54 54
     protected function applyOrderByParams(Connection $db)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,6 @@
 block discarded – undo
8 8
 
9 9
 namespace flipbox\ember\db\traits;
10 10
 
11
-use craft\db\QueryAbortedException;
12
-use yii\base\Exception;
13 11
 use yii\db\Connection;
14 12
 use yii\db\Expression;
15 13
 
Please login to merge, or discard this patch.
src/db/traits/UserGroupAttribute.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,12 +8,12 @@
 block discarded – undo
8 8
 
9 9
 namespace flipbox\ember\db\traits;
10 10
 
11
-use craft\models\UserGroup;
12 11
 use craft\db\Query;
13 12
 use craft\helpers\Db;
13
+use craft\models\UserGroup;
14
+use craft\records\UserGroup as UserGroupRecord;
14 15
 use flipbox\ember\helpers\ArrayHelper;
15 16
 use flipbox\ember\helpers\QueryHelper;
16
-use craft\records\UserGroup as UserGroupRecord;
17 17
 
18 18
 /**
19 19
  * @author Flipbox Factory <[email protected]>
Please login to merge, or discard this patch.