Completed
Push — develop ( 36f41e...c17836 )
by Nicolas
02:57
created
Console/Installers/Installer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     }
26 26
 
27 27
     /**
28
-     * @param  array $scripts
28
+     * @param  string[] $scripts
29 29
      * @return $this
30 30
      */
31 31
     public function stack(array $scripts)
Please login to merge, or discard this patch.
Console/Installers/Scripts/ConfigureDatabase.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,9 +120,10 @@
 block discarded – undo
120 120
     }
121 121
 
122 122
     /**
123
-     * @param $name
124
-     * @param $user
125
-     * @param $password
123
+     * @param string $name
124
+     * @param string $user
125
+     * @param string $password
126
+     * @param string $host
126 127
      */
127 128
     protected function setLaravelConfiguration($name, $user, $password, $host)
128 129
     {
Please login to merge, or discard this patch.
Console/Installers/Scripts/ConfigureUserProvider.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-     * @param $driver
43
-     * @param $command
42
+     * @param string $driver
43
+     * @param Command $command
44 44
      * @return mixed
45 45
      */
46 46
     protected function configure($driver, $command)
Please login to merge, or discard this patch.
Console/Installers/Traits/BlockMessage.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -2,6 +2,10 @@
 block discarded – undo
2 2
 
3 3
 trait BlockMessage
4 4
 {
5
+    /**
6
+     * @param string $title
7
+     * @param string $message
8
+     */
5 9
     public function blockMessage($title, $message, $style = 'info')
6 10
     {
7 11
         $formatter = $this->getHelperSet()->get('formatter');
Please login to merge, or discard this patch.
Doctrine/Translatable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @param $name
83
+     * @param string $name
84 84
      * @return mixed
85 85
      */
86 86
     public function getRawField($name)
Please login to merge, or discard this patch.
Foundation/Asset/Pipeline/AsgardAssetPipeline.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
     /**
161 161
      * Return the position in the array of the given key
162 162
      *
163
-     * @param $dependency
163
+     * @param string $dependency
164 164
      * @param array $dependencyArray
165 165
      * @return int
166 166
      */
Please login to merge, or discard this patch.
Providers/CoreServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
 
229 229
     /**
230 230
      * @param $file
231
-     * @param $package
231
+     * @param string $package
232 232
      * @return string
233 233
      */
234 234
     private function getConfigFilename($file, $package)
Please login to merge, or discard this patch.
Repositories/BaseRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
     /**
16 16
      * Return a collection of all elements of the resource
17
-     * @return mixed
17
+     * @return \Illuminate\Database\Eloquent\Collection
18 18
      */
19 19
     public function all();
20 20
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * Return resources translated in the given language
45
-     * @param $lang
45
+     * @param string $lang
46 46
      * @return object
47 47
      */
48 48
     public function allTranslatedIn($lang);
Please login to merge, or discard this patch.