Skip to content
This repository has been archived by the owner on Apr 22, 2022. It is now read-only.

Commit

Permalink
Add captions API to Client
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony committed Jan 4, 2019
1 parent 2df288c commit 04c6af4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use ApiVideo\Client\Api\AnalyticsLive;
use ApiVideo\Client\Api\AnalyticsVideo;
use ApiVideo\Client\Api\Captions;
use ApiVideo\Client\Api\Lives;
use ApiVideo\Client\Api\Players;
use ApiVideo\Client\Api\Videos;
Expand All @@ -23,6 +24,9 @@ final class Client
/** @var Players */
public $players;

/** @var Captions */
public $captions;

/** @var Tokens */
public $tokens;

Expand Down Expand Up @@ -53,6 +57,7 @@ public function __construct($username, $password, $domainName = null, $baseUri =
$this->videos = new Videos($browser);
$this->lives = new Lives($browser);
$this->players = new Players($browser);
$this->captions = new Captions($browser);
$this->analyticsVideo = new AnalyticsVideo($browser);
$this->analyticsLive = new AnalyticsLive($browser);
$this->tokens = new Tokens($browser);
Expand Down

0 comments on commit 04c6af4

Please sign in to comment.