-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatamolinoClient.php
77 lines (61 loc) · 1.65 KB
/
DatamolinoClient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/*
* This file is part of datamolino client.
*
* (c) 2018 cwd.at GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cwd\Datamolino;
use Cwd\Datamolino\Endpoints\AgendaEndpoint;
use Cwd\Datamolino\Endpoints\DocumentEndpoint;
use Cwd\Datamolino\Endpoints\UserEndpoint;
class DatamolinoClient
{
/** @var Client */
private $client;
/** @var UserEndpoint */
private $userEndpoint;
/** @var AgendaEndpoint */
private $agendaEndpoint;
/** @var DocumentEndpoint */
private $documentEndpoint;
public function __construct(?Client $client = null)
{
if (null === $client) {
$this->client = new Client();
} else {
$this->client = $client;
}
}
public function user(): UserEndpoint
{
if (null === $this->userEndpoint) {
$this->userEndpoint = new UserEndpoint($this->getClient());
}
return $this->userEndpoint;
}
public function agenda(): AgendaEndpoint
{
if (null === $this->agendaEndpoint) {
$this->agendaEndpoint = new AgendaEndpoint($this->getClient());
}
return $this->agendaEndpoint;
}
public function document(): DocumentEndpoint
{
if (null === $this->documentEndpoint) {
$this->documentEndpoint = new DocumentEndpoint($this->getClient());
}
return $this->documentEndpoint;
}
/**
* @return Client
*/
public function getClient(): Client
{
return $this->client;
}
}