API
9 months ago
Exception
2 years ago
Middleware
2 years ago
AbstractException.php
2 years ago
AbstractMySQLDriver.php
9 months ago
Connection.php
2 years ago
Exception.php
2 years ago
FetchUtils.php
2 years ago
Middleware.php
2 years ago
Result.php
2 years ago
ServerInfoAwareConnection.php
2 years ago
Statement.php
2 years ago
index.php
2 years ago
Statement.php
11 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\DBAL\Driver; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Doctrine\DBAL\ParameterType; |
| 5 | interface Statement |
| 6 | { |
| 7 | public function bindValue($param, $value, $type = ParameterType::STRING); |
| 8 | public function bindParam($param, &$variable, $type = ParameterType::STRING, $length = null); |
| 9 | public function execute($params = null) : Result; |
| 10 | } |
| 11 |