From 00ddf2c4e2bdc768f5a1af89138c12d301952ca7 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 afbc78391..b86978732 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),