File "SQLParserUtilsException.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/dbal/lib/Doctrine/DBAL/SQLParserUtilsException.php
File size: 494 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\DBAL;
if (!defined('ABSPATH')) exit;
use function sprintf;
class SQLParserUtilsException extends Exception
{
 public static function missingParam($paramName)
 {
 return new self(sprintf('Value for :%1$s not found in params array. Params array key should be "%1$s"', $paramName));
 }
 public static function missingType($typeName)
 {
 return new self(sprintf('Value for :%1$s not found in types array. Types array key should be "%1$s"', $typeName));
 }
}