File "ParameterType.php"

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

<?php
namespace MailPoetVendor\Doctrine\DBAL;
if (!defined('ABSPATH')) exit;
use PDO;
final class ParameterType
{
 public const NULL = PDO::PARAM_NULL;
 public const INTEGER = PDO::PARAM_INT;
 public const STRING = PDO::PARAM_STR;
 public const LARGE_OBJECT = PDO::PARAM_LOB;
 public const BOOLEAN = PDO::PARAM_BOOL;
 public const BINARY = 16;
 public const ASCII = 17;
 private function __construct()
 {
 }
}