File "Result.php"

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

<?php
namespace MailPoetVendor\Doctrine\DBAL;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\DBAL\Driver\Exception;
use Traversable;
interface Result extends Abstraction\Result
{
 public function fetchAllKeyValue() : array;
 public function fetchAllAssociativeIndexed() : array;
 public function iterateKeyValue() : Traversable;
 public function iterateAssociativeIndexed() : Traversable;
}