Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
37 | public function createStatus(string $state, ?string $targetUrl = null, ?string $description = null, ?string $context = null): PromiseInterface |
||
38 | { |
||
39 | return $this->handleCommand( |
||
40 | new CreateStatusCommand($this, $state, $targetUrl, $description, $context) |
||
41 | ); |
||
42 | } |
||
43 | } |
||
44 |