From ac57475e11b7a465db5e8fa4774e590de4fbe1c7 Mon Sep 17 00:00:00 2001 From: Awilum Date: Thu, 23 Jul 2020 17:55:21 +0300 Subject: [PATCH] chore(changelog): update changelog --- CHANGELOG.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e66a8aff..e772c3e2 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,19 +17,19 @@ New methods: ``` - $flextype['markdown']->parse(string $input) + $flextype->markdown->parse(string $input) - $flextype['shortcode']->add(string $name, $handler) - $flextype['shortcode']->parse(string $input, bool $cache = true) + $flextype->shortcode->add(string $name, $handler) + $flextype->shortcode->parse(string $input, bool $cache = true) - $flextype['json']->decode(string $input, bool $cache = true, bool $assoc = true, int $depth = 512, int $flags = 0) - $flextype['json']->encode($input, int $options = 0, int $depth = 512) : string + $flextype->json->decode(string $input, bool $cache = true, bool $assoc = true, int $depth = 512, int $flags = 0) + $flextype->json->encode($input, int $options = 0, int $depth = 512) : string - $flextype['yaml']->decode(string $input, bool $cache = true, int $flags = 0) : array - $flextype['yaml']->encode($input, int $inline = 2, int $indent = 4, int $flags = 0) : string + $flextype->yaml->decode(string $input, bool $cache = true, int $flags = 0) : array + $flextype->yaml->encode($input, int $inline = 2, int $indent = 4, int $flags = 0) : string - $flextype['frontmatter']->decode(string $input, bool $cache = true) - $flextype['frontmatter']->encode($input) : string + $flextype->frontmatter->decode(string $input, bool $cache = true) + $flextype->frontmatter->encode($input) : string ``` * **entries** New simplified logic for entries methods: fetch() fetchSingle() and fetchCollection()