Merge pull request #30764 from szepeviktor/patch-6

Fix FQCN in ContainerException
This commit is contained in:
Barry Hughes 2022-03-18 12:19:43 -07:00 committed by GitHub
commit 2f6e8ea0e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -15,9 +15,9 @@ class ContainerException extends \Exception {
*
* @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 \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 );
}
}