-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from andrelopez/master
LSN-4728 Adds fulfilment_point_timeslots and timeslots clients
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
namespace LiveStyled\Sell; | ||
|
||
use LiveStyled\Client; | ||
use LiveStyled\CrudClient; | ||
|
||
class FulfilmentPointTimeslotClient extends Client implements CrudClient | ||
{ | ||
protected function getPath() | ||
{ | ||
return '/v4/sell/fulfilment_point_timeslots'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
namespace LiveStyled\Sell; | ||
|
||
use LiveStyled\Client; | ||
use LiveStyled\CrudClient; | ||
|
||
class TimeslotClient extends Client implements CrudClient | ||
{ | ||
protected function getPath() | ||
{ | ||
return '/v4/sell/timeslots'; | ||
} | ||
} |