Completed
Pull Request — 2.0 (#103)
by
unknown
14:40 queued 12:24
created
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.
Traits/CanPublishConfiguration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     }
28 28
 
29 29
     /**
30
-     * @param $module
30
+     * @param string $module
31 31
      * @return string
32 32
      */
33 33
     private function getModulePath($module)
Please login to merge, or discard this patch.
Http/Middleware/PermissionMiddleware.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param Request  $request
32
-     * @param callable $next
32
+     * @param \Closure $next
33 33
      * @return mixed
34 34
      */
35 35
     public function handle(Request $request, \Closure $next)
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      * Get the correct segment position based on the locale or not
54 54
      *
55 55
      * @param $request
56
-     * @return mixed
56
+     * @return integer
57 57
      */
58 58
     private function getSegmentPosition(Request $request)
59 59
     {
@@ -67,9 +67,9 @@  discard block
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @param $moduleName
71
-     * @param $entityName
72
-     * @param $actionMethod
70
+     * @param string|null $moduleName
71
+     * @param string $entityName
72
+     * @param string $actionMethod
73 73
      * @return string
74 74
      */
75 75
     private function getPermission($moduleName, $entityName, $actionMethod)
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     /**
81 81
      * @param Request $request
82
-     * @param         $segmentPosition
82
+     * @param         integer $segmentPosition
83 83
      * @return string
84 84
      */
85 85
     protected function getModuleName(Request $request, $segmentPosition)
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 
90 90
     /**
91 91
      * @param Request $request
92
-     * @param         $segmentPosition
92
+     * @param         integer $segmentPosition
93 93
      * @return string
94 94
      */
95 95
     protected function getEntityName(Request $request, $segmentPosition)
Please login to merge, or discard this patch.
Console/Installers/Scripts/ConfigureDatabase.php 1 patch
Doc Comments   +7 added lines, -5 removed lines patch added patch discarded remove patch
@@ -89,6 +89,7 @@  discard block
 block discarded – undo
89 89
     }
90 90
     
91 91
     /**
92
+     * @param string $driver
92 93
      * @return string
93 94
      */
94 95
     protected function askDatabasePort($driver)
@@ -140,11 +141,12 @@  discard block
 block discarded – undo
140 141
     }
141 142
 
142 143
     /**
143
-     * @param $driver
144
-     * @param $name
145
-     * @param $port
146
-     * @param $user
147
-     * @param $password
144
+     * @param string $driver
145
+     * @param string $name
146
+     * @param string $port
147
+     * @param string $user
148
+     * @param string $password
149
+     * @param string $host
148 150
      */
149 151
     protected function setLaravelConfiguration($driver, $host, $port, $name, $user, $password)
150 152
     {
Please login to merge, or discard this patch.