1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-06 13:16:45 +02:00

chore(changelog): update changelog

This commit is contained in:
Awilum
2020-09-04 19:24:52 +03:00
parent 1d32609cf7
commit 1ee5fe96aa

View File

@@ -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))