From 1ee5fe96aa5b35ca3faa8e0cb2675bb0ed2881ac Mon Sep 17 00:00:00 2001 From: Awilum Date: Fri, 4 Sep 2020 19:24:52 +0300 Subject: [PATCH] chore(changelog): update changelog --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7b5e15a..fa4f341e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,14 +61,14 @@ Accessing storage example: ```php - flextype('emitter')->addListener('onEntryAfterInitialized', static function () : void { - flextype('entries')->storage['fetch_single']['data']['title'] = 'New title'; - }); + flextype('emitter')->addListener('onEntryAfterInitialized', static function () : void { + flextype('entries')->storage['fetch_single']['data']['title'] = 'New title'; + }); - $entry = flextype('entries')->fetchSingle('about'); + $entry = flextype('entries')->fetchSingle('about'); - echo $entry['title']; - ``` + echo $entry['title']; + ``` * **entries** add new events: `onEntryHas`, `onEntryInitialized`, `onEntriesInitialized` ([#467](https://github.com/flextype/flextype/issues/467))