File "Result.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\DBAL\Driver;
if (!defined('ABSPATH')) exit;
interface Result
{
 public function fetchNumeric();
 public function fetchAssociative();
 public function fetchOne();
 public function fetchAllNumeric() : array;
 public function fetchAllAssociative() : array;
 public function fetchFirstColumn() : array;
 public function rowCount();
 public function columnCount();
 public function free() : void;
}