Total Complexity | 11 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Tag |
||
14 | { |
||
15 | private $http; |
||
16 | |||
17 | public function __construct(Client $http) |
||
18 | { |
||
19 | $this->http = $http; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @return TagDto[] |
||
24 | */ |
||
25 | public function tags(string $workspaceId, array $params = []): array |
||
46 | ); |
||
47 | } |
||
48 | |||
49 | public function createTag(string $workspaceId, TagRequest $request): TagDto |
||
54 | } |
||
55 | } |
||
56 |