| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\DBAL\SQL\Parser; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | interface Visitor |
| 5 | { |
| 6 | public function acceptPositionalParameter(string $sql) : void; |
| 7 | public function acceptNamedParameter(string $sql) : void; |
| 8 | public function acceptOther(string $sql) : void; |
| 9 | } |
| 10 |