Completed
Pull Request — master (#190)
by bloveless
08:27
created
src/Ui/Form/FormFactory.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * Make the form.
35 35
      *
36
-     * @param null  $builder
37 36
      * @param array $parameters
38 37
      * @return FormCriteria
39 38
      */
@@ -60,7 +59,7 @@  discard block
 block discarded – undo
60 59
 
61 60
     /**
62 61
      * @param array $parameters
63
-     * @return array
62
+     * @return string
64 63
      */
65 64
     protected function resolve(array $parameters)
66 65
     {
Please login to merge, or discard this patch.
src/Ui/Icon/Icon.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     /**
47 47
      * Set the type.
48 48
      *
49
-     * @param $type
49
+     * @param string $type
50 50
      * @return $this
51 51
      */
52 52
     public function setType($type)
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * Set the class.
71 71
      *
72
-     * @param $class
72
+     * @param string $class
73 73
      * @return $this
74 74
      */
75 75
     public function setClass($class)
Please login to merge, or discard this patch.
src/Ui/Table/Command/SetDefaultParameters.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@
 block discarded – undo
53 53
     /**
54 54
      * Set the table model object from the builder's model.
55 55
      *
56
-     * @param SetDefaultParameters $command
57 56
      */
58 57
     public function handle()
59 58
     {
Please login to merge, or discard this patch.
src/Ui/Table/Component/Action/Command/SetActiveAction.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,6 @@
 block discarded – undo
34 34
     /**
35 35
      * Set the active action.
36 36
      *
37
-     * @param SetActiveAction $command
38 37
      */
39 38
     public function handle()
40 39
     {
Please login to merge, or discard this patch.
src/Ui/Table/Component/Header/Header.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      * Get the current direction
97 97
      * defaulting to ascending.
98 98
      *
99
-     * @param null $default
99
+     * @param string $default
100 100
      * @return string|null
101 101
      */
102 102
     public function getDirection($default = null)
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     /**
139 139
      * Get the header heading.
140 140
      *
141
-     * @return mixed
141
+     * @return string
142 142
      */
143 143
     public function getHeading()
144 144
     {
Please login to merge, or discard this patch.
src/Ui/Table/Component/View/Command/SetActiveView.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,6 @@
 block discarded – undo
38 38
      * Handle the command.
39 39
      *
40 40
      * @param Request   $request
41
-     * @param Container $container
42 41
      */
43 42
     public function handle(Request $request, ViewHandler $handler)
44 43
     {
Please login to merge, or discard this patch.
src/Ui/Tree/Component/Item/ItemValue.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      *
61 61
      * @param TreeBuilder $builder
62 62
      * @param             $entry
63
-     * @return View|mixed|null
63
+     * @return string
64 64
      */
65 65
     public function make(TreeBuilder $builder, $entry)
66 66
     {
Please login to merge, or discard this patch.
src/Ui/Tree/Tree.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
     /**
296 296
      * Add data to the data collection.
297 297
      *
298
-     * @param $key
298
+     * @param string $key
299 299
      * @param $value
300 300
      * @return $this
301 301
      */
Please login to merge, or discard this patch.
src/Ui/Tree/TreeBuilder.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     /**
266 266
      * Get an option value.
267 267
      *
268
-     * @param      $key
268
+     * @param      string $key
269 269
      * @param null $default
270 270
      * @return mixed
271 271
      */
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
     /**
353 353
      * Get a tree option value.
354 354
      *
355
-     * @param      $key
355
+     * @param      string $key
356 356
      * @param null $default
357 357
      * @return mixed
358 358
      */
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
     /**
365 365
      * Set a tree option value.
366 366
      *
367
-     * @param $key
367
+     * @param string $key
368 368
      * @param $value
369 369
      * @return $this
370 370
      */
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
     /**
478 478
      * Get a request value.
479 479
      *
480
-     * @param      $key
480
+     * @param      string $key
481 481
      * @param null $default
482 482
      * @return mixed
483 483
      */
Please login to merge, or discard this patch.