1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace DigitalCz\DigiSign\Endpoint\Traits; |
||
6 | |||
7 | use DigitalCz\DigiSign\Resource\ResourceInterface; |
||
8 | |||
9 | trait CreateEndpointTrait |
||
10 | { |
||
11 | /** |
||
12 | * @param mixed[] $body |
||
13 | */ |
||
14 | public function create(array $body): ResourceInterface |
||
15 | { |
||
16 | return $this->makeCreateRequest($body); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
17 | } |
||
18 | } |
||
19 |