-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '4.13' of https://github.com/craftcms/cms into 5.5
# Conflicts: # CHANGELOG-WIP.md
- Loading branch information
Showing
2 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,23 @@ | |
|
||
namespace craft\events; | ||
|
||
use craft\base\Event; | ||
use craft\base\FieldInterface; | ||
|
||
/** | ||
* ApplyFieldSaveEvent class. | ||
* | ||
* @author Pixel & Tonic, Inc. <[email protected]> | ||
* @since 5.5.0 | ||
*/ | ||
class ApplyFieldSaveEvent extends FieldEvent | ||
class ApplyFieldSaveEvent extends Event | ||
{ | ||
/** | ||
* @var FieldInterface|null The field associated with this event, if it already exists | ||
* in the database or in memory. | ||
*/ | ||
public ?FieldInterface $field; | ||
|
||
/** | ||
* @var array New field config data that is about to be applied. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters