From dc4d9f671d1c1bbe0102e09469250200935b07d1 Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Thu, 10 Apr 2014 11:53:10 +0200 Subject: [PATCH] Added use statements to PAGI IClient to aid IDEs. Signed-off-by: Jacob Kiers --- src/mg/PAGI/Client/IClient.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/mg/PAGI/Client/IClient.php b/src/mg/PAGI/Client/IClient.php index 64938e6..67d1300 100644 --- a/src/mg/PAGI/Client/IClient.php +++ b/src/mg/PAGI/Client/IClient.php @@ -28,6 +28,25 @@ */ namespace PAGI\Client; +use PAGI\CallerId\ICallerId; +use PAGI\CDR\ICDR; +use PAGI\ChannelVariables\IChannelVariables; +use PAGI\Client\Result\AmdResult; +use PAGI\Client\Result\DialResult; +use PAGI\Client\Result\DigitReadResult; +use PAGI\Client\Result\ExecResult; +use PAGI\Client\Result\FaxResult; +use PAGI\Client\Result\PlayResult; +use PAGI\Client\Result\RecordResult; +use PAGI\Exception\ChannelDownException; +use PAGI\Exception\DatabaseInvalidEntryException; +use PAGI\Exception\ExecuteCommandException; +use PAGI\Exception\PAGIException; +use PAGI\Exception\SoundFileException; +use PAGI\Logger\Asterisk\IAsteriskLogger; +use PAGI\Node\Node; +use PAGI\Node\NodeController; + /** * AGI Client interface. *