Skip to content

Commit

Permalink
BE-788 add venue and eventCategory clients
Browse files Browse the repository at this point in the history
  • Loading branch information
Dasha Syvyuk authored and Dasha Syvyuk committed Feb 19, 2021
1 parent 7abd5fd commit f83094d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/EventManagement/EventCategoryClient.php
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';
}
}
14 changes: 14 additions & 0 deletions src/EventManagement/VenueClient.php
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';
}
}

0 comments on commit f83094d

Please sign in to comment.