From 24984e4b92b86c6af4ad8255dd4c5e9de210eafc Mon Sep 17 00:00:00 2001 From: David Grudl Date: Sat, 16 Jan 2021 22:49:13 +0100 Subject: [PATCH] LatteExtension: option 'xhtml' is deprecated --- src/Bridges/ApplicationDI/LatteExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bridges/ApplicationDI/LatteExtension.php b/src/Bridges/ApplicationDI/LatteExtension.php index bebe82bb7..c9f177c4b 100644 --- a/src/Bridges/ApplicationDI/LatteExtension.php +++ b/src/Bridges/ApplicationDI/LatteExtension.php @@ -39,7 +39,7 @@ public function getConfigSchema(): Nette\Schema\Schema { return Expect::structure([ 'debugger' => Expect::anyOf(true, false, 'all'), - 'xhtml' => Expect::bool(false), + 'xhtml' => Expect::bool(false)->deprecated(), 'macros' => Expect::arrayOf('string'), 'templateClass' => Expect::string(), 'strictTypes' => Expect::bool(false),