Current File : /var/www/pediatribu/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/dbal/src/Driver/Result.php |
<?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() : int;
public function columnCount() : int;
public function free() : void;
}