Completed
Push — master ( 98f825 )
by Ryan
10:38
created
src/Asset/Command/LoadThemeVariables.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
     /**
29 29
      * Create a new ThemeVariablesHaveLoaded instance.
30 30
      *
31
-     * @param ThemeCollection $themes
32 31
      */
33 32
     function __construct(Collection $variables)
34 33
     {
Please login to merge, or discard this patch.
src/Assignment/AssignmentModel.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Anomaly\Streams\Platform\Model\EloquentModel;
7 7
 use Anomaly\Streams\Platform\Stream\Contract\StreamInterface;
8 8
 use Robbo\Presenter\PresentableInterface;
9
-use Robbo\Presenter\Robbo;
10 9
 
11 10
 /**
12 11
  * Class AssignmentModel
Please login to merge, or discard this patch.
src/Assignment/AssignmentRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * Create a new assignment.
40 40
      *
41 41
      * @param array $attributes
42
-     * @return AssignmentInterface
42
+     * @return AssignmentModel|null
43 43
      */
44 44
     public function create(array $attributes = [])
45 45
     {
Please login to merge, or discard this patch.
src/Database/Migration/Command/CreateAddonMigrationFolder.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
     /**
22 22
      * Create a new CreateAddonMigrationFolder instance.
23 23
      *
24
-     * @param null|string $namespace
25 24
      */
26 25
     public function __construct($addon = null)
27 26
     {
Please login to merge, or discard this patch.
src/Database/Seeder/Command/Seed.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,6 @@
 block discarded – undo
39 39
      *
40 40
      * @param         $addon
41 41
      * @param null    $class
42
-     * @param Command $consoleCommand
43 42
      */
44 43
     public function __construct($addon, $class = null, Command $command = null)
45 44
     {
Please login to merge, or discard this patch.
src/Entry/EntryCollection.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
     /**
18 18
      * Return the sorted entries.
19 19
      *
20
-     * @param bool|false $reverse
21 20
      * @return static
22 21
      */
23 22
     public function sorted($direction = 'asc')
Please login to merge, or discard this patch.
src/Entry/EntryFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@
 block discarded – undo
48 48
     /**
49 49
      * Make a new EntryBuilder instance.
50 50
      *
51
-     * @param        $namespace
52
-     * @param        $stream
51
+     * @param        string $namespace
52
+     * @param        string $stream
53 53
      * @param string $method
54 54
      * @return EntryCriteria
55 55
      */
Please login to merge, or discard this patch.
src/Entry/EntryModel.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
     /**
190 190
      * Set a field value.
191 191
      *
192
-     * @param $fieldSlug
192
+     * @param string $fieldSlug
193 193
      * @param $value
194 194
      */
195 195
     public function setFieldValue($fieldSlug, $value)
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
     /**
274 274
      * Get the field type query.
275 275
      *
276
-     * @param $fieldSlug
276
+     * @param string $fieldSlug
277 277
      * @return FieldTypeQuery
278 278
      */
279 279
     public function getFieldTypeQuery($fieldSlug)
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
      * Return whether or not the assignment for
585 585
      * the given field slug is translatable.
586 586
      *
587
-     * @param $fieldSlug
587
+     * @param string $fieldSlug
588 588
      * @return bool
589 589
      */
590 590
     public function assignmentIsTranslatable($fieldSlug)
Please login to merge, or discard this patch.
src/Entry/EntryTranslationsModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
     /**
140 140
      * Fire field type events.
141 141
      *
142
-     * @param       $trigger
142
+     * @param       string $trigger
143 143
      * @param array $payload
144 144
      */
145 145
     public function fireFieldTypeEvents($trigger, $payload = [])
Please login to merge, or discard this patch.