Completed
Push — master ( 98a062...441031 )
by Ryan
10:10
created
src/Addon/Extension/ExtensionCollection.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,6 @@
 block discarded – undo
159 159
     /**
160 160
      * Set the installed and enabled states.
161 161
      *
162
-     * @param array $installed
163 162
      */
164 163
     public function setStates(array $states)
165 164
     {
Please login to merge, or discard this patch.
src/Addon/Extension/ExtensionModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      * Find a extension by it's namespace or return a new
41 41
      * extension with the given namespace.
42 42
      *
43
-     * @param  $namespace
43
+     * @param  string $namespace
44 44
      * @return ExtensionModel
45 45
      */
46 46
     public function findByNamespaceOrNew($namespace)
Please login to merge, or discard this patch.
src/Addon/Module/ModuleManager.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,6 @@
 block discarded – undo
44 44
      * Enable a module.
45 45
      *
46 46
      * @param Module $module
47
-     * @param bool   $seed
48 47
      */
49 48
     public function enable(Module $module)
50 49
     {
Please login to merge, or discard this patch.
src/Addon/Module/ModuleModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      * Find a module by it's namespace or return a new
41 41
      * module with the given namespace.
42 42
      *
43
-     * @param  $namespace
43
+     * @param  string $namespace
44 44
      * @return ModuleModel
45 45
      */
46 46
     public function findByNamespaceOrNew($namespace)
Please login to merge, or discard this patch.
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/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/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/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.
src/Entry/Parser/EntryStreamParser.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      * Parse the stream.
40 40
      *
41 41
      * @param StreamInterface $stream
42
-     * @param                 $string
42
+     * @param                 string $string
43 43
      */
44 44
     protected function parseStream(StreamInterface $stream, &$string)
45 45
     {
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      * Parse an assignment field.
108 108
      *
109 109
      * @param FieldInterface $field
110
-     * @param                $string
110
+     * @param                string $string
111 111
      */
112 112
     protected function parseField(FieldInterface $field, &$string)
113 113
     {
Please login to merge, or discard this patch.