Completed
Push — master ( a1edad )
by Ryan
13:00
created
src/Application/Application.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,6 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * Create a new Application instance.
41 41
      *
42
-     * @param ApplicationRepository $model
43 42
      */
44 43
     public function __construct(ApplicationRepository $applications)
45 44
     {
@@ -69,7 +68,7 @@  discard block
 block discarded – undo
69 68
     /**
70 69
      * Get the reference.
71 70
      *
72
-     * @return null
71
+     * @return string
73 72
      */
74 73
     public function getReference()
75 74
     {
Please login to merge, or discard this patch.
src/Asset/Asset.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      *
218 218
      * @param      $url
219 219
      * @param null $path
220
-     * @return null|string
220
+     * @return string
221 221
      */
222 222
     public function download($url, $path = null)
223 223
     {
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
     /**
441 441
      * Publish the collection of assets to the path.
442 442
      *
443
-     * @param $path
443
+     * @param string $path
444 444
      * @param $collection
445 445
      * @param $additionalFilters
446 446
      */
@@ -633,7 +633,7 @@  discard block
 block discarded – undo
633 633
      * Decide whether we need to publish the file
634 634
      * to the path or not.
635 635
      *
636
-     * @param        $path
636
+     * @param        string $path
637 637
      * @param        $collection
638 638
      * @param  array $filters
639 639
      * @return bool
@@ -688,7 +688,7 @@  discard block
 block discarded – undo
688 688
     /**
689 689
      * Add a namespace path hint.
690 690
      *
691
-     * @param  $namespace
691
+     * @param  string $namespace
692 692
      * @param  $path
693 693
      * @return $this
694 694
      */
Please login to merge, or discard this patch.
src/Asset/AssetParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     /**
44 44
      * Parse some content.
45 45
      *
46
-     * @param $content
46
+     * @param string $content
47 47
      * @return string
48 48
      */
49 49
     public function parse($content)
Please login to merge, or discard this patch.
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/Migration/Command/Handler/MigrateStreamHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      * Handle the command.
37 37
      *
38 38
      * @param MigrateStream $command
39
-     * @return StreamInterface
39
+     * @return null|\Anomaly\Streams\Platform\Model\EloquentModel
40 40
      */
41 41
     public function handle(MigrateStream $command)
42 42
     {
Please login to merge, or discard this patch.
src/Database/Seeder/Command/Handler/SeedHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     /**
87 87
      * Call a seeder if it exists.
88 88
      *
89
-     * @param $class
89
+     * @param string $class
90 90
      */
91 91
     protected function call($class)
92 92
     {
Please login to merge, or discard this patch.