Completed
Push — master ( 53d3fb...369d32 )
by Ryan
10s
created
src/Ui/Command/GetTranslatedString.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,6 @@
 block discarded – undo
50 50
     /**
51 51
      * Handle the command.
52 52
      *
53
-     * @param  Translator $translator
54 53
      * @return string
55 54
      */
56 55
     public function handle()
Please login to merge, or discard this patch.
src/Ui/ControlPanel/Component/Section/Contract/SectionInterface.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * Set the highlighted flag.
144 144
      *
145
-     * @param  boolean $active
145
+     * @param boolean $highlighted
146 146
      * @return $this
147 147
      */
148 148
     public function setHighlighted($highlighted);
@@ -181,6 +181,7 @@  discard block
 block discarded – undo
181 181
      * Set the buttons.
182 182
      *
183 183
      * @param array|string $buttons
184
+     * @return void
184 185
      */
185 186
     public function setButtons($buttons);
186 187
 
@@ -195,6 +196,7 @@  discard block
 block discarded – undo
195 196
      * Set the attributes.
196 197
      *
197 198
      * @param array $attributes
199
+     * @return void
198 200
      */
199 201
     public function setAttributes(array $attributes);
200 202
 
Please login to merge, or discard this patch.
src/Ui/ControlPanel/Component/Section/Section.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,6 @@
 block discarded – undo
304 304
     /**
305 305
      * Set the highlighted flag.
306 306
      *
307
-     * @param  boolean $active
308 307
      * @return $this
309 308
      */
310 309
     public function setHighlighted($highlighted)
Please login to merge, or discard this patch.
src/Ui/Form/FormFactory.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@  discard block
 block discarded – undo
32 32
     /**
33 33
      * Make the form.
34 34
      *
35
-     * @param  null         $builder
36 35
      * @param  array        $parameters
37 36
      * @return FormCriteria
38 37
      */
@@ -59,7 +58,7 @@  discard block
 block discarded – undo
59 58
 
60 59
     /**
61 60
      * @param  array $parameters
62
-     * @return array
61
+     * @return string
63 62
      */
64 63
     protected function resolve(array $parameters)
65 64
     {
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
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      * Get the current direction
96 96
      * defaulting to ascending.
97 97
      *
98
-     * @param  null        $default
98
+     * @param  string        $default
99 99
      * @return string|null
100 100
      */
101 101
     public function getDirection($default = null)
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     /**
138 138
      * Get the header heading.
139 139
      *
140
-     * @return mixed
140
+     * @return string
141 141
      */
142 142
     public function getHeading()
143 143
     {
Please login to merge, or discard this patch.
src/Ui/Table/Table.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -387,7 +387,7 @@
 block discarded – undo
387 387
      * Get an option value.
388 388
      *
389 389
      * @param        $key
390
-     * @param  null  $default
390
+     * @param  integer|null  $default
391 391
      * @return mixed
392 392
      */
393 393
     public function getOption($key, $default = null)
Please login to merge, or discard this patch.
src/Ui/Table/TableRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * Create a new EloquentModel instance.
23 23
      *
24
-     * @param EloquentModel $model
24
+     * @param Model $model
25 25
      */
26 26
     public function __construct(Model $model)
27 27
     {
Please login to merge, or discard this patch.
src/Stream/StreamSchema.php 1 patch
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
      * Drop a table.
121 121
      *
122
-     * @param $table
122
+     * @param string $table
123 123
      */
124 124
     public function dropTable($table)
125 125
     {
Please login to merge, or discard this patch.
src/Support/_helpers.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
      * Get an item from an array or object using "dot" notation.
60 60
      *
61 61
      * @param  mixed        $target
62
-     * @param  string|array $key
63
-     * @param  mixed        $default
62
+     * @param  string $key
63
+     * @param  string        $default
64 64
      * @return mixed
65 65
      */
66 66
     function data($target, $key, $default = null)
Please login to merge, or discard this patch.