<?php namespace Doctrine\DBAL\SQL\Parser; /** * SQL parser visitor * * @internal */ interface Visitor { /** * Accepts an SQL fragment containing a positional parameter */ public function acceptPositionalParameter(string $sql): void; /** * Accepts an SQL fragment containing a named parameter */ public function acceptNamedParameter(string $sql): void; /** * Accepts other SQL fragments */ public function acceptOther(string $sql): void; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Exception | Folder | 0755 |
|
|
Exception.php | File | 128 B | 0644 |
|
Visitor.php | File | 501 B | 0644 |
|