Passed
Pull Request — 1.x (#53)
by Pavel
02:12
created

EnvelopeTemplatesEndpoint::recipients()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace DigitalCz\DigiSign\Endpoint;
6
7
use DigitalCz\DigiSign\DigiSign;
8
use DigitalCz\DigiSign\Endpoint\Traits\CRUDEndpointTrait;
9
use DigitalCz\DigiSign\Resource\EnvelopeTemplate;
10
11
/**
12
 * @extends ResourceEndpoint<EnvelopeTemplate>
13
 * @method EnvelopeTemplate get(string $id)
14
 * @method EnvelopeTemplate create(array $body)
15
 * @method EnvelopeTemplate update(string $id, array $body)
16
 */
17
final class EnvelopeTemplatesEndpoint extends ResourceEndpoint
18
{
19
    /** @use CRUDEndpointTrait<EnvelopeTemplate> */
20
    use CRUDEndpointTrait;
21
22
    public function __construct(DigiSign $parent)
23
    {
24
        parent::__construct($parent, '/api/envelope-templates', EnvelopeTemplate::class);
25
    }
26
27
    /**
28
     * @param EnvelopeTemplate|string $template
29
     */
30
    public function documents($template): EnvelopeTemplateDocumentsEndpoint
31
    {
32
        return new EnvelopeTemplateDocumentsEndpoint($this, $template);
33
    }
34
35
    /**
36
     * @param EnvelopeTemplate|string $template
37
     */
38
    public function recipients($template): EnvelopeTemplateRecipientsEndpoint
39
    {
40
        return new EnvelopeTemplateRecipientsEndpoint($this, $template);
41
    }
42
43
    /**
44
     * @param EnvelopeTemplate|string $template
45
     */
46
    public function notifications($template): EnvelopeTemplateNotificationsEndpoint
47
    {
48
        return new EnvelopeTemplateNotificationsEndpoint($this, $template);
49
    }
50
51
    /**
52
     * @param EnvelopeTemplate|string $template
53
     */
54
    public function tags($template): EnvelopeTemplateTagsEndpoint
55
    {
56
        return new EnvelopeTemplateTagsEndpoint($this, $template);
57
    }
58
}
59