Skip to content

Commit 6a8c26b

Browse files
committed
Fix CS
1 parent d82bdb7 commit 6a8c26b

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/Geocoder/Exception/ChainNoResultException.php

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,33 @@
1515
*/
1616
class ChainNoResultException extends NoResultException
1717
{
18-
1918
/**
2019
* Exceptions from chained providers
21-
*
20+
*
2221
* @var array
2322
*/
2423
private $exceptions = array();
2524

2625
/**
2726
* Constructor
28-
*
29-
* @param string $message
30-
* @param array $exceptions Array of Exception instances
27+
*
28+
* @param string $message
29+
* @param array $exceptions Array of Exception instances
3130
*/
32-
public function __construct($message = "", array $exceptions = array())
31+
public function __construct($message = '', array $exceptions = array())
3332
{
3433
parent::__construct($message);
34+
3535
$this->exceptions = $exceptions;
3636
}
3737

3838
/**
3939
* Get the exceptions from chained providers
40+
*
41+
* @return array
4042
*/
4143
public function getExceptions()
4244
{
4345
return $this->exceptions;
4446
}
45-
4647
}

0 commit comments

Comments
 (0)