Completed
Push — master ( 7d03b8...e91698 )
by Renato
10:44
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/Iterators/IteratorFileCsv.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      *
177 177
      * @param array $headers Headers
178 178
      *
179
-     * @return void
179
+     * @return IteratorFileCsv
180 180
      */
181 181
     public function setHeaders(array $headers)
182 182
     {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      *
190 190
      * @param array $defaults Defaults
191 191
      *
192
-     * @return void
192
+     * @return IteratorFileCsv
193 193
      */
194 194
     public function setDefaults(array $defaults)
195 195
     {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      *
203 203
      * @param array $replace Replaces
204 204
      *
205
-     * @return void
205
+     * @return IteratorFileCsv
206 206
      */
207 207
     public function setReplace(array $replace)
208 208
     {
Please login to merge, or discard this patch.
src/NwLaravel/OAuth/OAuthProxy.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * @param string $client_id   Client Id
49 49
      * @param array  $credentials Credentials
50 50
      *
51
-     * @return Response
51
+     * @return \Illuminate\Http\JsonResponse
52 52
      */
53 53
     public function attemptLogin($client_id, array $credentials)
54 54
     {
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      * @param string $client_id   Client Id
62 62
      * @param array  $credentials Credentials
63 63
      *
64
-     * @return Response
64
+     * @return \Illuminate\Http\JsonResponse
65 65
      */
66 66
     public function attemptRefresh($client_id, array $credentials)
67 67
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * @param string $client_id String Client Id
76 76
      * @param array  $data      Array Data
77 77
      *
78
-     * @return Response
78
+     * @return \Illuminate\Http\JsonResponse
79 79
      */
80 80
     private function proxy($grantType, $client_id, array $data = array())
81 81
     {
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      * Parse Response
122 122
      *
123 123
      * @param  string $guzzleResponse Guzzle Response
124
-     * @return string
124
+     * @return \Illuminate\Http\JsonResponse
125 125
      */
126 126
     private function parseResponse($guzzleResponse)
127 127
     {
Please login to merge, or discard this patch.
src/NwLaravel/Repositories/Eloquent/AbstractRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      *
121 121
      * @param  string  $method
122 122
      * @param  array   $parameters
123
-     * @return mixed
123
+     * @return AbstractRepository
124 124
      *
125 125
      * @throws \BadMethodCallException
126 126
      */
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
      *
317 317
      * @param array $input Array Input
318 318
      *
319
-     * @return Builder
319
+     * @return AbstractRepository
320 320
      */
321 321
     public function whereInputCriteria(array $input = array())
322 322
     {
Please login to merge, or discard this patch.
src/NwLaravel/FileStorage/Imagine.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,6 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * Opacity
64 64
      *
65
+     * @param double|null $opacity
65 66
      * @return Imagine
66 67
      */
67 68
     public function opacity($opacity)
@@ -125,7 +126,7 @@  discard block
 block discarded – undo
125 126
      * @param string  $format
126 127
      * @param integer $quality
127 128
      *
128
-     * @return binary
129
+     * @return Image
129 130
      */
130 131
     public function encode($format = null, $quality = null)
131 132
     {
@@ -138,7 +139,7 @@  discard block
 block discarded – undo
138 139
      * @param string  $path
139 140
      * @param integer $quality
140 141
      *
141
-     * @return binary
142
+     * @return Image
142 143
      */
143 144
     public function save($path, $quality = null)
144 145
     {
Please login to merge, or discard this patch.
src/NwLaravel/FileStorage/StorageManager.php 1 patch
Doc Comments   +2 added lines, -2 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
     {
Please login to merge, or discard this patch.