This commit is contained in:
Romain Neutron
2012-04-26 00:55:53 +02:00
parent edbfff226e
commit ade22295ad
631 changed files with 92375 additions and 101763 deletions

View File

@@ -17,27 +17,25 @@
*/
class Bridge_Exception_ApiDisabled extends Bridge_Exception
{
protected $api;
protected $api;
/**
*
* @param Bridge_Api $api
*/
public function __construct(Bridge_Api $api)
{
$this->api = $api;
/**
*
* @param Bridge_Api $api
*/
public function __construct(Bridge_Api $api)
{
$this->api = $api;
parent::__construct();
}
/**
*
* @return Bridge_Api
*/
public function get_api()
{
return $this->api;
}
parent::__construct();
}
/**
*
* @return Bridge_Api
*/
public function get_api()
{
return $this->api;
}
}