Completed
Push — master ( 2f4806...4e3d73 )
by Renato
05:45
created
src/NwLaravel/helpers.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * To Fixed
118 118
      *
119 119
      * @param int   $number  Integer Number
120
-     * @param float $decimal Float Decimal
120
+     * @param integer $decimal Float Decimal
121 121
      *
122 122
      * @return float
123 123
      */
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
      * Formato numero conforme locale
479 479
      *
480 480
      * @param int   $valor    Integer Valor
481
-     * @param float $decimais Float Decimais
481
+     * @param integer $decimais Float Decimais
482 482
      *
483 483
      * @return string
484 484
      * @example : formatNumber(8712.335) = 8.712,34
Please login to merge, or discard this patch.
src/NwLaravel/Repositories/Eloquent/AbstractRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
      *
123 123
      * @param  string  $method
124 124
      * @param  array   $parameters
125
-     * @return mixed
125
+     * @return AbstractRepository
126 126
      *
127 127
      * @throws BadMethodCallException
128 128
      */
Please login to merge, or discard this patch.
src/NwLaravel/Validation/BaseValidator.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,6 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * Get Messages
82 82
      *
83
-     * @param array $messages
84 83
      *
85 84
      * @return array
86 85
      */
@@ -92,7 +91,6 @@  discard block
 block discarded – undo
92 91
     /**
93 92
      * Get Attributes
94 93
      *
95
-     * @param array $attributes
96 94
      *
97 95
      * @return array
98 96
      */
@@ -240,6 +238,9 @@  discard block
 block discarded – undo
240 238
         return $rules;
241 239
     }
242 240
 
241
+    /**
242
+     * @return string
243
+     */
243 244
     protected function replaceValuesRules($rule)
244 245
     {
245 246
         while (preg_match('/\[([A-Za-z0-9_]+)\]/', $rule, $match)) {
Please login to merge, or discard this patch.
src/NwLaravel/FileStorage/StorageManager.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *
58 58
      * @param string $filename Path File
59 59
      *
60
-     * @return bool
60
+     * @return integer
61 61
      */
62 62
     public function size($filename)
63 63
     {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      *
139 139
      * @param string $filename Path File
140 140
      *
141
-     * @return bool
141
+     * @return string
142 142
      */
143 143
     public function readFile($filename)
144 144
     {
@@ -164,7 +164,6 @@  discard block
 block discarded – undo
164 164
     /**
165 165
      * Delete Folder
166 166
      *
167
-     * @param string $folder Path Folder
168 167
      *
169 168
      * @return bool
170 169
      */
@@ -180,7 +179,6 @@  discard block
 block discarded – undo
180 179
     /**
181 180
      * Files in Folder
182 181
      *
183
-     * @param string $folder
184 182
      * @param bool   $recursive
185 183
      *
186 184
      * @return array
Please login to merge, or discard this patch.