1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-11 23:54:06 +02:00

update CHANGELOG.md

This commit is contained in:
Awilum
2020-12-03 12:59:25 +03:00
parent 222d395bc7
commit cca8606bb4

View File

@@ -149,7 +149,14 @@
flextype('entries')->entry['title'] = 'New title';
// new
flextype('entries')->setStorage('fetch_single.data.title', 'New title');
flextype('entries')->setStorage('fetch.data.title', 'New title');
// old
$title = flextype('entries')->entry['title'];
// new
$title = flextype('entries')->getStorage('fetch.data.title');
$title = flextype('entries')->getStorage('fetch.data')['title'];
```
* **core** Removed App from all core namespaces ([#469](https://github.com/flextype/flextype/issues/469))