blob: c0b9e92f87a288084295b198de9e767e02c0ee19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
declare(strict_types=1);
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;
}
|