Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | public function create(int $projectId, string $name, string $description = null) |
||
40 | { |
||
41 | $suite = $this->connector->send_post('add_suite/'.$this->encodePath($projectId), |
||
42 | ['name' => $name, |
||
43 | 'description' => $description]); |
||
44 | unset($this->cache[$projectId]); |
||
45 | return $suite; |
||
46 | } |
||
66 | } |