Completed
Push — master ( f1c5d8...b7eb80 )
by Gregorio
01:54
created
src/Common/GatewayFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -39,6 +39,9 @@
 block discarded – undo
39 39
         return new $class($parameters);
40 40
     }
41 41
 
42
+    /**
43
+     * @param string $name
44
+     */
42 45
     private function resolveParameters($name, $parameters)
43 46
     {
44 47
         if (!is_array($parameters)) {
Please login to merge, or discard this patch.
src/Common/Validation/Validator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     /**
109 109
      * @param array $parameters
110 110
      * @param array $rules
111
-     * @param mixed $context
111
+     * @param Parametrizable $context
112 112
      * @return static|\Illuminate\Validation\Validator
113 113
      */
114 114
     public static function make($parameters, $rules, $context = null)
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 
140 140
     /**
141 141
      * @param \Illuminate\Validation\Validator $validator
142
-     * @param array $names
142
+     * @param string[] $names
143 143
      */
144 144
     public function bootValidatorExtensions(&$validator, $names)
145 145
     {
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      * @param string $attribute
219 219
      * @param string $rule
220 220
      * @param array $parameters
221
-     * @return bool
221
+     * @return string
222 222
      */
223 223
     protected static function replaceIsModel($message, $attribute, $rule, $parameters)
224 224
     {
Please login to merge, or discard this patch.