Completed
Pull Request — master (#389)
by
unknown
06:38
created
src/Model/EloquentRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
      * Delete a record.
187 187
      *
188 188
      * @param  EloquentModel $entry
189
-     * @return bool
189
+     * @return boolean|null
190 190
      */
191 191
     public function delete(EloquentModel $entry)
192 192
     {
Please login to merge, or discard this patch.
src/Ui/Breadcrumb/BreadcrumbCollection.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
     /**
16 16
      * Add a breadcrumb.
17 17
      *
18
-     * @param      $key
19
-     * @param null $url
18
+     * @param      string $key
19
+     * @param string $url
20 20
      */
21 21
     public function add($key, $url = null)
22 22
     {
Please login to merge, or discard this patch.
src/Ui/ControlPanel/Component/Section/SectionFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      * Make the section from it's parameters.
50 50
      *
51 51
      * @param  array $parameters
52
-     * @return mixed
52
+     * @return Contract\SectionInterface
53 53
      */
54 54
     public function make(array $parameters)
55 55
     {
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/Addon/FieldType/FieldType.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
     /**
254 254
      * Set the disabled flag.
255 255
      *
256
-     * @param $disabled
256
+     * @param boolean $disabled
257 257
      * @return $this
258 258
      */
259 259
     public function setDisabled($disabled)
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
     /**
395 395
      * Set the field slug.
396 396
      *
397
-     * @param  $field
397
+     * @param  string $field
398 398
      * @return $this
399 399
      */
400 400
     public function setField($field)
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
     /**
457 457
      * Get the field slug.
458 458
      *
459
-     * @return mixed
459
+     * @return null|string
460 460
      */
461 461
     public function getField()
462 462
     {
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
     /**
640 640
      * Set the placeholder.
641 641
      *
642
-     * @param $placeholder
642
+     * @param null|string $placeholder
643 643
      * @return $this
644 644
      */
645 645
     public function setPlaceholder($placeholder)
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
     /**
733 733
      * Set the prefix.
734 734
      *
735
-     * @param  $prefix
735
+     * @param  string|null $prefix
736 736
      * @return $this
737 737
      */
738 738
     public function setPrefix($prefix)
@@ -801,7 +801,7 @@  discard block
 block discarded – undo
801 801
     /**
802 802
      * Set the required flag.
803 803
      *
804
-     * @param  $required
804
+     * @param  boolean $required
805 805
      * @return $this
806 806
      */
807 807
     public function setRequired($required)
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
     /**
876 876
      * Get the column length.
877 877
      *
878
-     * @return string
878
+     * @return null|integer
879 879
      */
880 880
     public function getColumnLength()
881 881
     {
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
@@ -36,7 +36,6 @@
 block discarded – undo
36 36
      * Handle the command.
37 37
      *
38 38
      * @param Request $request
39
-     * @param Container $container
40 39
      */
41 40
     public function handle(Request $request, ViewHandler $handler)
42 41
     {
Please login to merge, or discard this patch.
src/Addon/Console/MakeAddon.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php namespace Anomaly\Streams\Platform\Addon\Console;
2 2
 
3 3
 use Anomaly\Streams\Platform\Addon\AddonManager;
4
-use Anomaly\Streams\Platform\Addon\Command\RegisterAddons;
5 4
 use Anomaly\Streams\Platform\Addon\Console\Command\MakeAddonPaths;
6 5
 use Anomaly\Streams\Platform\Addon\Console\Command\ScaffoldTheme;
7 6
 use Anomaly\Streams\Platform\Addon\Console\Command\WriteAddonClass;
Please login to merge, or discard this patch.
src/Addon/Addon.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
     /**
155 155
      * Get a namespaced key string.
156 156
      *
157
-     * @param  null $key
157
+     * @param  string|null $key
158 158
      * @return string
159 159
      */
160 160
     public function getNamespace($key = null)
Please login to merge, or discard this patch.
src/Addon/Console/Command/ScaffoldTheme.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,6 @@
 block discarded – undo
45 45
     /**
46 46
      * Handle the command.
47 47
      *
48
-     * @param Parser $parser
49 48
      * @param Filesystem $filesystem
50 49
      */
51 50
     public function handle(Filesystem $filesystem)
Please login to merge, or discard this patch.