diff --git a/CHANGELOG.md b/CHANGELOG.md index a4cf917..2d72101 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 4.0.0 - Unreleased +## 4.0.0 - 2026-02-01 - Organization support - Hyvor\Internal\Laravel\LogFake removed diff --git a/bundle/src/Comms/Event/FromCore/License/LicenseChanged.php b/bundle/src/Comms/Event/FromCore/License/LicenseChanged.php new file mode 100644 index 0000000..b2b27cc --- /dev/null +++ b/bundle/src/Comms/Event/FromCore/License/LicenseChanged.php @@ -0,0 +1,49 @@ +organizationId; + } + + public function getComponent(): Component + { + return $this->component; + } + + public function getPreviousLicense(): ResolvedLicense + { + return $this->previousLicense; + } + + public function getNewLicense(): ResolvedLicense + { + return $this->newLicense; + } + + public function from(): array + { + return [Component::CORE]; + } + + public function to(): array + { + return []; + } + +}