File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
class ChainNoResultException extends NoResultException
17
17
{
18
-
19
18
/**
20
19
* Exceptions from chained providers
21
- *
20
+ *
22
21
* @var array
23
22
*/
24
23
private $ exceptions = array ();
25
24
26
25
/**
27
26
* 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
31
30
*/
32
- public function __construct ($ message = "" , array $ exceptions = array ())
31
+ public function __construct ($ message = '' , array $ exceptions = array ())
33
32
{
34
33
parent ::__construct ($ message );
34
+
35
35
$ this ->exceptions = $ exceptions ;
36
36
}
37
37
38
38
/**
39
39
* Get the exceptions from chained providers
40
+ *
41
+ * @return array
40
42
*/
41
43
public function getExceptions ()
42
44
{
43
45
return $ this ->exceptions ;
44
46
}
45
-
46
47
}
You can’t perform that action at this time.
0 commit comments