Skip to content

Commit

Permalink
Rename $users to $data
Browse files Browse the repository at this point in the history
  • Loading branch information
bakura10 committed Jan 6, 2014
1 parent c1d0810 commit 77a7709
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ZfrStripe/Client/Iterator/StripeCommandsIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ protected function sendRequest()
$this->command->set('offset', $this->iteratedCount);

$result = $this->command->execute();
$users = $result['data'];
$data = $result['data'];

$this->nextToken = empty($users) ? false : true;
$this->nextToken = empty($data) ? false : true;

return $users;
return $data;
}
}

0 comments on commit 77a7709

Please sign in to comment.