Completed
Push — master ( 1d9d68...87c56c )
by Alexander
03:49
created
src/Traits/MakesApiRequests.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,6 @@
 block discarded – undo
103 103
     /**
104 104
      * Decodes JSON response and returns the data.
105 105
      *
106
-     * @param  string|array $field
107 106
      * @return array
108 107
      */
109 108
     protected function getSuccessData( $attributes = null )
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
         $data = [ ];
120 120
 
121 121
         foreach ( $attributes as $attribute ) {
122
-            $data[] = array_get( $rawData, $attribute );
122
+            $data[ ] = array_get( $rawData, $attribute );
123 123
         }
124 124
 
125 125
         return $data;
Please login to merge, or discard this patch.