Completed
Push — master ( fe47f8...2aa7aa )
by Brian
09:43
created

PhpariaApi::events()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/*
3
 * Copyright 2015 Brian Smith <[email protected]>.
4
 *
5
 * Licensed under the Apache License, Version 2.0 (the "License");
6
 * you may not use this file except in compliance with the License.
7
 * You may obtain a copy of the License at
8
 *
9
 *      http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
18
namespace phparia\Client;
19
20
use phparia\Api\Applications;
21
use phparia\Api\Asterisk;
22
use phparia\Api\Bridges;
23
use phparia\Api\Channels;
24
use phparia\Api\DeviceStates;
25
use phparia\Api\Endpoints;
26
use phparia\Api\Events;
27
use phparia\Api\Mailboxes;
28
use phparia\Api\Playbacks;
29
use phparia\Api\Recordings;
30
use phparia\Api\Sounds;
31
use React\EventLoop;
32
33
/**
34
 * Class PhpariaApi
35
 *
36
 * Just a helper class for getting api endpoints.
37
 *
38
 * @package phparia\Client
39
 */
40
class PhpariaApi
41
{
42
    /**
43
     * PhpariaApi constructor.
44
     * @param AriClient $ariClient
45
     */
46
    public function __construct(AriClient $ariClient)
47
    {
48
        $this->ariClient = $ariClient;
49
    }
50
51
    /**
52
     * @var AriClient
53
     */
54
    protected $ariClient;
55
56
    /**
57
     * @return AriClient
58
     */
59
    public function getAriClient()
60
    {
61
        return $this->ariClient;
62
    }
63
64
    /**
65
     * @return Applications
66
     */
67
    public function applications()
68
    {
69
        return $this->getAriClient()->applications();
70
    }
71
72
    /**
73
     * @return Asterisk
74
     */
75
    public function asterisk()
76
    {
77
        return $this->getAriClient()->asterisk();
78
    }
79
80
    /**
81
     * @return Bridges
82
     */
83
    public function bridges()
84
    {
85
        return $this->getAriClient()->bridges();
86
    }
87
88
    /**
89
     * @return Channels
90
     */
91
    public function channels()
92
    {
93
        return $this->getAriClient()->channels();
94
    }
95
96
    /**
97
     * @return DeviceStates
98
     */
99
    public function deviceStates()
100
    {
101
        return $this->getAriClient()->deviceStates();
102
    }
103
104
    /**
105
     * @return Endpoints
106
     */
107
    public function endPoints()
108
    {
109
        return $this->getAriClient()->endPoints();
110
    }
111
112
    /**
113
     * @return Events
114
     */
115
    public function events()
116
    {
117
        return $this->getAriClient()->events();
118
    }
119
120
    /**
121
     * @return Mailboxes
122
     */
123
    public function mailboxes()
124
    {
125
        return $this->getAriClient()->mailboxes();
126
    }
127
128
    /**
129
     * @return Playbacks
130
     */
131
    public function playbacks()
132
    {
133
        return $this->getAriClient()->playbacks();
134
    }
135
136
    /**
137
     * @return Recordings
138
     */
139
    public function recordings()
140
    {
141
        return $this->getAriClient()->recordings();
142
    }
143
144
    /**
145
     * @return Sounds
146
     */
147
    public function sounds()
148
    {
149
        return $this->getAriClient()->sounds();
150
    }
151
}