File "ResultStatement.php"

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

<?php
namespace MailPoetVendor\Doctrine\DBAL\Driver;
if (!defined('ABSPATH')) exit;
use PDO;
use Traversable;
interface ResultStatement extends Traversable
{
 public function closeCursor();
 public function columnCount();
 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null);
 public function fetch($fetchMode = null, $cursorOrientation = PDO::FETCH_ORI_NEXT, $cursorOffset = 0);
 public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null);
 public function fetchColumn($columnIndex = 0);
}