44 lines
993 B
PHP
44 lines
993 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Doctrine\WPDB;
|
|
|
|
use MailPoetVendor\Doctrine\DBAL\Driver\Result as ResultInterface;
|
|
|
|
class Result implements ResultInterface {
|
|
public function fetchNumeric() {
|
|
// TODO: Implement fetchNumeric() method.
|
|
}
|
|
|
|
public function fetchAssociative() {
|
|
// TODO: Implement fetchAssociative() method.
|
|
}
|
|
|
|
public function fetchOne() {
|
|
// TODO: Implement fetchOne() method.
|
|
}
|
|
|
|
public function fetchAllNumeric(): array {
|
|
// TODO: Implement fetchAllNumeric() method.
|
|
}
|
|
|
|
public function fetchAllAssociative(): array {
|
|
// TODO: Implement fetchAllAssociative() method.
|
|
}
|
|
|
|
public function fetchFirstColumn(): array {
|
|
// TODO: Implement fetchFirstColumn() method.
|
|
}
|
|
|
|
public function rowCount(): int {
|
|
// TODO: Implement rowCount() method.
|
|
}
|
|
|
|
public function columnCount(): int {
|
|
// TODO: Implement columnCount() method.
|
|
}
|
|
|
|
public function free(): void {
|
|
// TODO: Implement free() method.
|
|
}
|
|
}
|