diff --git a/src/Compat/StyleWithNonce.php b/src/Compat/StyleWithNonce.php new file mode 100644 index 00000000..f4c71851 --- /dev/null +++ b/src/Compat/StyleWithNonce.php @@ -0,0 +1,25 @@ +nonce === null) { + $this->nonce = version_compare(Version::VERSION, '2.12.0', '>=') + ? Csp::getStyleNonce() ?? '' + : ''; + } + + return parent::getNonce(); + } +}