Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
willdurand committed Sep 16, 2013
1 parent d82bdb7 commit 6a8c26b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/Geocoder/Exception/ChainNoResultException.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,33 @@
*/
class ChainNoResultException extends NoResultException
{

/**
* Exceptions from chained providers
*
*
* @var array
*/
private $exceptions = array();

/**
* Constructor
*
* @param string $message
* @param array $exceptions Array of Exception instances
*
* @param string $message
* @param array $exceptions Array of Exception instances
*/
public function __construct($message = "", array $exceptions = array())
public function __construct($message = '', array $exceptions = array())
{
parent::__construct($message);

$this->exceptions = $exceptions;
}

/**
* Get the exceptions from chained providers
*
* @return array
*/
public function getExceptions()
{
return $this->exceptions;
}

}

0 comments on commit 6a8c26b

Please sign in to comment.