diff --git a/src/Exception/InvalidArgumentException.js b/src/Exception/InvalidArgumentException.js index 826b076..b0a4e62 100644 --- a/src/Exception/InvalidArgumentException.js +++ b/src/Exception/InvalidArgumentException.js @@ -3,5 +3,5 @@ const ExceptionInterface = Jymfony.Component.Messenger.Exception.ExceptionInterf /** * @memberOf Jymfony.Component.Messenger.Exception */ -export default class InvalidArgumentException extends mix(global.InvalidArgumentException, ExceptionInterface) { +export default class InvalidArgumentException extends mix(globalThis.InvalidArgumentException, ExceptionInterface) { } diff --git a/src/Exception/LogicException.js b/src/Exception/LogicException.js index d9546b2..3efcf29 100644 --- a/src/Exception/LogicException.js +++ b/src/Exception/LogicException.js @@ -3,5 +3,5 @@ const ExceptionInterface = Jymfony.Component.Messenger.Exception.ExceptionInterf /** * @memberOf Jymfony.Component.Messenger.Exception */ -export default class LogicException extends mix(global.LogicException, ExceptionInterface) { +export default class LogicException extends mix(globalThis.LogicException, ExceptionInterface) { } diff --git a/src/Exception/RuntimeException.js b/src/Exception/RuntimeException.js index 6f3847f..386a1cc 100644 --- a/src/Exception/RuntimeException.js +++ b/src/Exception/RuntimeException.js @@ -3,5 +3,5 @@ const ExceptionInterface = Jymfony.Component.Messenger.Exception.ExceptionInterf /** * @memberOf Jymfony.Component.Messenger.Exception */ -export default class RuntimeException extends mix(global.RuntimeException, ExceptionInterface) { +export default class RuntimeException extends mix(globalThis.RuntimeException, ExceptionInterface) { }