Completed
Push — master ( 59527d...93c6d6 )
by Nate
10:09 queued 08:52
created
src/queries/OrderByTrait.php 1 patch
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.
src/objects/FieldMutatorTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     /**
55 55
      * Associate a site
56 56
      *
57
-     * @param mixed $field
57
+     * @param FieldInterface|null $field
58 58
      * @return $this
59 59
      */
60 60
     public function setField($field = null)
Please login to merge, or discard this patch.
src/objects/DateCreatedMutatorTrait.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 
9 9
 namespace flipbox\craft\ember\objects;
10 10
 
11
-use craft\helpers\DateTimeHelper;
12 11
 use DateTime;
12
+use craft\helpers\DateTimeHelper;
13 13
 
14 14
 /**
15 15
  * @property DateTime|null $dateCreated
Please login to merge, or discard this patch.
src/objects/DateUpdatedMutatorTrait.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 
9 9
 namespace flipbox\craft\ember\objects;
10 10
 
11
-use craft\helpers\DateTimeHelper;
12 11
 use DateTime;
12
+use craft\helpers\DateTimeHelper;
13 13
 
14 14
 /**
15 15
  * @property DateTime|null $dateUpdated
Please login to merge, or discard this patch.
src/queue/AbstractEmailByKey.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
     }
120 120
 
121 121
     /**
122
-     * @param $recipient
122
+     * @param User $recipient
123 123
      * @param array $params
124 124
      * @return MessageInterface
125 125
      * @throws \yii\base\InvalidConfigException
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
8 8
 
9 9
 namespace flipbox\craft\ember\queue;
10 10
 
11
-use craft\queue\BaseJob;
12 11
 use Craft;
13 12
 use craft\elements\User;
14 13
 use craft\helpers\StringHelper;
14
+use craft\queue\BaseJob;
15 15
 use yii\helpers\Json;
16 16
 use yii\mail\MessageInterface;
17 17
 
Please login to merge, or discard this patch.
src/records/ActiveRecord.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@
 block discarded – undo
263 263
     }
264 264
 
265 265
     /**
266
-     * @param $name
266
+     * @param string $name
267 267
      * @return bool
268 268
      */
269 269
     protected function hasSetterPriority($name)
Please login to merge, or discard this patch.