Completed
Push — master ( 3f171e...dc1984 )
by Renato
09:39
created
src/NwLaravel/FileStorage/Imagine.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -62,6 +62,7 @@
 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)
Please login to merge, or discard this patch.
src/NwLaravel/FileStorage/StorageManager.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      *
63 63
      * @param string $filename Path File
64 64
      *
65
-     * @return bool
65
+     * @return integer
66 66
      */
67 67
     public function size($filename)
68 68
     {
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
      * @param string       $folder   String Folder
246 246
      * @param bool         $override Boolean Over Ride
247 247
      *
248
-     * @return bool|array
248
+     * @return string
249 249
      */
250 250
     protected function parseFile($file, $folder = null, $name = null, $override = false)
251 251
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use \Exception;
6 6
 use Symfony\Component\HttpFoundation\File\UploadedFile;
7 7
 use Illuminate\Contracts\Filesystem\Factory as Storage;
8
-use Intervention\Image\ImageManager;
9 8
 use Intervention\Image\Image;
10 9
 
11 10
 /**
Please login to merge, or discard this patch.
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/Criterias/InputCriteria.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      *
84 84
      * @param array $columns Array Columns
85 85
      *
86
-     * @return this
86
+     * @return InputCriteria
87 87
      */
88 88
     public function addColumns(array $columns)
89 89
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @param array $searchables
98 98
      *
99
-     * @return this
99
+     * @return InputCriteria
100 100
      */
101 101
     public function setSearchables(array $searchables)
102 102
     {
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      *
110 110
      * @param string $name
111 111
      *
112
-     * @return this
112
+     * @return InputCriteria
113 113
      */
114 114
     public function setNameSearchable($name)
115 115
     {
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      *
123 123
      * @param string $orderBy
124 124
      *
125
-     * @return this
125
+     * @return InputCriteria
126 126
      */
127 127
     public function setFieldOrderBy($orderBy)
128 128
     {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      *
136 136
      * @param string $sortedBy
137 137
      *
138
-     * @return this
138
+     * @return InputCriteria
139 139
      */
140 140
     public function setFieldSortedBy($sortedBy)
141 141
     {
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
      * Where Date
354 354
      *
355 355
      * @param Builder $query    Builder
356
-     * @param unknown $key      Key
356
+     * @param string $key      Key
357 357
      * @param string  $operator String Operator
358 358
      * @param int     $value    Value
359 359
      * @throws InvalidArgumentException
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
      * @param Builder  $query    Builder
422 422
      * @param unknown  $key      Column
423 423
      * @param string   $operator String Operator
424
-     * @param DateTime $date     Date Time
424
+     * @param \DateTime $date     Date Time
425 425
      *
426 426
      * @return string
427 427
      */
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/Repositories/Resultset/AbstractResultset.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * Get statement
72 72
      *
73 73
      * @throws RuntimeException
74
-     * @return mixed
74
+     * @return PDOStatement
75 75
      */
76 76
     public function getStatement()
77 77
     {
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     /**
120 120
      * Key
121 121
      *
122
-     * @return mixed
122
+     * @return integer
123 123
      */
124 124
     public function key()
125 125
     {
Please login to merge, or discard this patch.
src/NwLaravel/Repositories/Resultset/BuilderResultset.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * Initialize
25 25
      *
26
-     * @param Illuminate\Database\Eloquent\Builder $builder Builder
26
+     * @param EloquentBuilder $builder Builder
27 27
      */
28 28
     public function __construct(EloquentBuilder $builder)
29 29
     {
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     /**
57 57
      * Get Prototype
58 58
      *
59
-     * @return Illuminate\Database\Eloquent\Model
59
+     * @return \Illuminate\Database\Eloquent\Model
60 60
      */
61 61
     public function getPrototype()
62 62
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace NwLaravel\Repositories\Resultset;
4 4
 
5 5
 use PDOStatement;
6
-use RuntimeException;
7 6
 use \Illuminate\Database\Eloquent\Model as EloquentModel;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.