From 314b72e63d74eebd9a5b5385358acfeddd52d06d Mon Sep 17 00:00:00 2001 From: Awilum Date: Fri, 9 Sep 2022 16:05:36 +0300 Subject: [PATCH] feat(core): updates for #586 #585 #584 --- src/flextype/core/Parsers/Shortcodes/CalcShortcode.php | 2 +- src/flextype/core/Parsers/Shortcodes/DateShortcode.php | 2 +- src/flextype/core/Parsers/Shortcodes/EvalShortcode.php | 2 +- src/flextype/core/Parsers/Shortcodes/IfShortcode.php | 2 +- src/flextype/core/Parsers/Shortcodes/UnlessShortcode.php | 2 +- src/flextype/core/Parsers/Shortcodes/WhenShortcode.php | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/flextype/core/Parsers/Shortcodes/CalcShortcode.php b/src/flextype/core/Parsers/Shortcodes/CalcShortcode.php index 0cd7f944..298dc379 100644 --- a/src/flextype/core/Parsers/Shortcodes/CalcShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/CalcShortcode.php @@ -18,7 +18,7 @@ namespace Flextype\Parsers\Shortcodes; use Thunder\Shortcode\Shortcode\ShortcodeInterface; -use function Flextype\expression; + use function Flextype\parsers; use function Flextype\registry; diff --git a/src/flextype/core/Parsers/Shortcodes/DateShortcode.php b/src/flextype/core/Parsers/Shortcodes/DateShortcode.php index f8df2eba..78faca05 100644 --- a/src/flextype/core/Parsers/Shortcodes/DateShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/DateShortcode.php @@ -18,7 +18,7 @@ namespace Flextype\Parsers\Shortcodes; use Thunder\Shortcode\Shortcode\ShortcodeInterface; -use function Flextype\expression; + use function Flextype\parsers; use function Flextype\registry; diff --git a/src/flextype/core/Parsers/Shortcodes/EvalShortcode.php b/src/flextype/core/Parsers/Shortcodes/EvalShortcode.php index 9bbeabef..67f35449 100644 --- a/src/flextype/core/Parsers/Shortcodes/EvalShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/EvalShortcode.php @@ -18,7 +18,7 @@ namespace Flextype\Parsers\Shortcodes; use Thunder\Shortcode\Shortcode\ShortcodeInterface; -use function Flextype\expression; + use function Flextype\parsers; use function Flextype\registry; diff --git a/src/flextype/core/Parsers/Shortcodes/IfShortcode.php b/src/flextype/core/Parsers/Shortcodes/IfShortcode.php index 23c17c53..05cfe489 100644 --- a/src/flextype/core/Parsers/Shortcodes/IfShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/IfShortcode.php @@ -18,7 +18,7 @@ namespace Flextype\Parsers\Shortcodes; use Thunder\Shortcode\Shortcode\ShortcodeInterface; -use function Flextype\expression; + use function Flextype\parsers; use function Flextype\registry; diff --git a/src/flextype/core/Parsers/Shortcodes/UnlessShortcode.php b/src/flextype/core/Parsers/Shortcodes/UnlessShortcode.php index 58890e4f..ca40f908 100644 --- a/src/flextype/core/Parsers/Shortcodes/UnlessShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/UnlessShortcode.php @@ -18,7 +18,7 @@ namespace Flextype\Parsers\Shortcodes; use Thunder\Shortcode\Shortcode\ShortcodeInterface; -use function Flextype\expression; + use function Flextype\parsers; use function Flextype\registry; diff --git a/src/flextype/core/Parsers/Shortcodes/WhenShortcode.php b/src/flextype/core/Parsers/Shortcodes/WhenShortcode.php index a1e7b770..60230438 100644 --- a/src/flextype/core/Parsers/Shortcodes/WhenShortcode.php +++ b/src/flextype/core/Parsers/Shortcodes/WhenShortcode.php @@ -18,7 +18,7 @@ namespace Flextype\Parsers\Shortcodes; use Thunder\Shortcode\Shortcode\ShortcodeInterface; -use function Flextype\expression; + use function Flextype\parsers; use function Flextype\registry;