![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/endroid/qr-code/src/Exception/ |
<?php declare(strict_types=1); namespace Endroid\QrCode\Exception; final class ValidationException extends \Exception { public static function createForUnsupportedWriter(string $writerClass): self { return new self(sprintf('Unable to validate the result: "%s" does not support validation', $writerClass)); } public static function createForMissingPackage(string $packageName): self { return new self(sprintf('Please install "%s" or disable image validation', $packageName)); } public static function createForInvalidData(string $expectedData, string $actualData): self { return new self('The validation reader read "'.$actualData.'" instead of "'.$expectedData.'". Adjust your parameters to increase readability or disable validation.'); } }