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 1515 */
1616class 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}
You can’t perform that action at this time.
0 commit comments