Skip to content

Commit

Permalink
Merge branch 'hotfix/fix_boot_events' into 'release/2.3.0'
Browse files Browse the repository at this point in the history
Fix boot events

See merge request metamodels/core!344
  • Loading branch information
zonky2 committed Oct 21, 2024
2 parents ee9dc6e + e9f21f5 commit d0e62af
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/Events/MetaModelsBootEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
* @see MetaModelsEvents::SUBSYSTEM_BOOT
* @see MetaModelsEvents::SUBSYSTEM_BOOT_FRONTEND
* @see MetaModelsEvents::SUBSYSTEM_BOOT_BACKEND
*
* @deprecated
*/
class MetaModelsBootEvent extends Event
{
Expand Down
10 changes: 8 additions & 2 deletions src/MetaModelsEvents.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of MetaModels/core.
*
* (c) 2012-2023 The MetaModels team.
* (c) 2012-2024 The MetaModels team.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -14,7 +14,7 @@
* @author Christian Schiffler <[email protected]>
* @author Sven Baumann <[email protected]>
* @author Ingolf Steinhardt <[email protected]>
* @copyright 2012-2023 The MetaModels team.
* @copyright 2012-2024 The MetaModels team.
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later
* @filesource
*/
Expand All @@ -34,6 +34,8 @@ class MetaModelsEvents
* @see MetaModelsEvents::SUBSYSTEM_BOOT_FRONTEND
*
* @see MetaModelsEvents::SUBSYSTEM_BOOT_BACKEND
*
* @deprecated
*/
public const SUBSYSTEM_BOOT = 'metamodels.boot';

Expand All @@ -43,6 +45,8 @@ class MetaModelsEvents
* This is fired after @link(MetaModelsEvents::SUBSYSTEM_BOOT) has been fired
*
* @see \MetaModels\Events\MetaModelsBootEvent
*
* @deprecated
*/
public const SUBSYSTEM_BOOT_FRONTEND = 'metamodels.boot.frontend';

Expand All @@ -52,6 +56,8 @@ class MetaModelsEvents
* This is fired after @link(MetaModelsEvents::SUBSYSTEM_BOOT) has been fired
*
* @see \MetaModels\Events\MetaModelsBootEvent
*
* @deprecated
*/
public const SUBSYSTEM_BOOT_BACKEND = 'metamodels.boot.backend';

Expand Down

0 comments on commit d0e62af

Please sign in to comment.