Completed
Pull Request — master (#22)
by ARCANEDEV
07:43
created
helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
     /**
204 204
      * Validate boolean.
205 205
      *
206
-     * @param  bool|mixed  $value
206
+     * @param  boolean  $value
207 207
      *
208 208
      * @return bool
209 209
      */
Please login to merge, or discard this patch.
src/Resources/FileUpload.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
      * @param  array|null         $params
104 104
      * @param  array|string|null  $options
105 105
      *
106
-     * @return self|array
106
+     * @return FileUpload
107 107
      */
108 108
     public static function create($params = [], $options = null)
109 109
     {
Please login to merge, or discard this patch.
src/Resources/Invoice.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      * @param  array|null         $params
61 61
      * @param  array|string|null  $options
62 62
      *
63
-     * @return self|array
63
+     * @return Invoice
64 64
      */
65 65
     public static function create($params = [], $options = null)
66 66
     {
Please login to merge, or discard this patch.
src/Utilities/AutoPagingIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      * Move forward to next element.
75 75
      * @link  http://php.net/manual/en/iterator.next.php
76 76
      *
77
-     * @return void
77
+     * @return null|false
78 78
      */
79 79
     public function next()
80 80
     {
Please login to merge, or discard this patch.
src/Resources/Transfer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * @param  array|null         $params
76 76
      * @param  array|string|null  $options
77 77
      *
78
-     * @return self|array
78
+     * @return Transfer
79 79
      */
80 80
     public static function create($params = [], $options = null)
81 81
     {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      * @param  array|null         $params
103 103
      * @param  array|string|null  $options
104 104
      *
105
-     * @return \Arcanedev\Stripe\Resources\TransferReversal
105
+     * @return Transfer
106 106
      */
107 107
     public function reverse($params = null, $options = null)
108 108
     {
Please login to merge, or discard this patch.