Merge pull request #30764 from szepeviktor/patch-6
Fix FQCN in ContainerException
This commit is contained in:
commit
2f6e8ea0e7
|
@ -13,11 +13,11 @@ class ContainerException extends \Exception {
|
|||
/**
|
||||
* Create a new instance of the class.
|
||||
*
|
||||
* @param null $message The exception message to throw.
|
||||
* @param int $code The error code.
|
||||
* @param Exception|null $previous The previous throwable used for exception chaining.
|
||||
* @param null $message The exception message to throw.
|
||||
* @param int $code The error code.
|
||||
* @param \Exception|null $previous The previous throwable used for exception chaining.
|
||||
*/
|
||||
public function __construct( $message = null, $code = 0, Exception $previous = null ) {
|
||||
public function __construct( $message = null, $code = 0, \Exception $previous = null ) {
|
||||
parent::__construct( $message, $code, $previous );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue