nexmo-bundle/Managers/NumberManager.php

40 lines
878 B
PHP
Raw Permalink Normal View History

2014-03-30 22:20:02 +00:00
<?php
namespace Jhg\NexmoBundle\Managers;
use Jhg\NexmoBundle\NexmoClient\NexmoClient;
/**
* Class NumberManager
* @package Jhg\NexmoBundle\Managers
* @Author Javi Hernández
*/
class NumberManager
{
/**
* @var \Jhg\NexmoBundle\NexmoClient\NexmoClient
*/
protected $nexmoClient;
/**
* @param NexmoClient $nexmoClient
*/
public function __construct(NexmoClient $nexmoClient) {
$this->nexmoClient = $nexmoClient;
}
public function search() {
throw new \Exception(__METHOD__.' not yet implemented');
}
public function buy() {
throw new \Exception(__METHOD__.' not yet implemented');
}
public function cancel() {
throw new \Exception(__METHOD__.' not yet implemented');
}
public function update() {
throw new \Exception(__METHOD__.' not yet implemented');
}
}