Skip to content

Commit

Permalink
adding use statement to the usage example
Browse files Browse the repository at this point in the history
  • Loading branch information
Plamen Garkov committed Dec 17, 2016
1 parent 3a9d3c8 commit 6173567
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,13 @@ return [
Calling from your code:

```php
$service = new \Firelike\ShareASale\Service\ShareASaleService();
use Firelike\ShareASale\Service\ShareASaleService;

$options = array(
$service = new ShareASaleService();

$options = [
'dateStart' => '6/22/2016',
);
];

$records = $service->activity($options);

Expand Down

0 comments on commit 6173567

Please sign in to comment.