diff --git a/src/Renderer/Image/SvgImageBackEnd.php b/src/Renderer/Image/SvgImageBackEnd.php index dfcd5bd..5b6709a 100644 --- a/src/Renderer/Image/SvgImageBackEnd.php +++ b/src/Renderer/Image/SvgImageBackEnd.php @@ -31,7 +31,9 @@ final class SvgImageBackEnd implements ImageBackEndInterface public function __construct() { if (! class_exists(XMLWriter::class)) { - throw new RuntimeException('You need to install the libxml extension to use this back end'); + throw new RuntimeException( + 'You need to install the libxml extension and enable the xmlwriter extension to use this back end' + ); } }