Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/theseer/../egulias/.././unicodeveloper/.././nunomaduro/../mews/../ramsey/.././paypal/../unicodeveloper/././.././laravel/../async-aws/../mews/../laravel/../paypal/../doctrine/dbal/src/SQL/Parser
الملفات الموجودة في هذا الـ Path:
.
..
Exception
Exception.php
Visitor.php

مشاهدة ملف: Visitor.php

<?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;
}