File "Statement.php"

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

<?php
namespace MailPoetVendor\Doctrine\DBAL\Driver;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\DBAL\ParameterType;
interface Statement extends ResultStatement
{
 public function bindValue($param, $value, $type = ParameterType::STRING);
 public function bindParam($param, &$variable, $type = ParameterType::STRING, $length = null);
 public function errorCode();
 public function errorInfo();
 public function execute($params = null);
 public function rowCount();
}