From cca8606bb467392b119ee006cb80ce0856c92bfd Mon Sep 17 00:00:00 2001 From: Awilum Date: Thu, 3 Dec 2020 12:59:25 +0300 Subject: [PATCH] update CHANGELOG.md --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cc41306..464155f8 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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))