-
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.
BE-788 add venue and eventCategory clients
- Loading branch information
Dasha Syvyuk
authored and
Dasha Syvyuk
committed
Feb 19, 2021
1 parent
7abd5fd
commit f83094d
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\EventManagement; | ||
|
||
use LiveStyled\Client; | ||
use LiveStyled\CrudClient; | ||
|
||
class EventCategoryClient extends Client implements CrudClient | ||
{ | ||
protected function getPath() | ||
{ | ||
return '/v4/event_management/event_categories'; | ||
} | ||
} |
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\EventManagement; | ||
|
||
use LiveStyled\Client; | ||
use LiveStyled\CrudClient; | ||
|
||
class VenueClient extends Client implements CrudClient | ||
{ | ||
protected function getPath() | ||
{ | ||
return '/v4/event_management/venues'; | ||
} | ||
} |