wCMF 4.1
Guides
Getting started
Architecture
Model
Persistence
Presentation
Configuration
Security
I18n & l10n
Tests
Versions
4.1.x
4.0.x
API
Classes
Hierarchy
Code
Support
home
travis
build
iherwig
wcmf
src
wcmf
lib
config
ConfigChangeEvent.php
1
<?php
2
/**
3
* wCMF - wemove Content Management Framework
4
* Copyright (C) 2005-2020 wemove digital solutions GmbH
5
*
6
* Licensed under the terms of the MIT License.
7
*
8
* See the LICENSE file distributed with this work for
9
* additional information.
10
*/
11
namespace
wcmf\lib\config
;
12
13
use
wcmf\lib\core\Event
;
14
15
/**
16
* ConfigChangeEvent signals a change of the application configuration.
17
*
18
* @author ingo herwig <ingo@wemove.com>
19
*/
20
class
ConfigChangeEvent
extends
Event
{
21
22
const
NAME
= __CLASS__;
23
}
24
?>
wcmf\lib\core\Event
Event is the base class for all events.
Definition:
Event.php:18
wcmf\lib\config\ConfigChangeEvent\NAME
const NAME
Definition:
ConfigChangeEvent.php:22
wcmf\lib\config
Configuration related interfaces and classes.
Definition:
namespaces.php:6
wcmf\lib\config\ConfigChangeEvent
ConfigChangeEvent signals a change of the application configuration.
Definition:
ConfigChangeEvent.php:20