mirror of
https://github.com/danog/postgres.git
synced 2024-12-02 09:27:54 +01:00
Mark internal classes as internal
This commit is contained in:
parent
ff2e0c600b
commit
d0da29f987
@ -4,6 +4,9 @@ namespace Amp\Postgres\Internal;
|
|||||||
|
|
||||||
use Amp\Postgres\ParseException;
|
use Amp\Postgres\ParseException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
final class ArrayParser
|
final class ArrayParser
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -9,6 +9,8 @@ const STATEMENT_PARAM_REGEX = <<<'REGEX'
|
|||||||
REGEX;
|
REGEX;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @internal
|
||||||
|
*
|
||||||
* @param string $sql SQL statement with named and unnamed placeholders.
|
* @param string $sql SQL statement with named and unnamed placeholders.
|
||||||
* @param array $names [Output] Array of parameter positions mapped to names and/or indexed locations.
|
* @param array $names [Output] Array of parameter positions mapped to names and/or indexed locations.
|
||||||
*
|
*
|
||||||
@ -38,6 +40,8 @@ function parseNamedParams(string $sql, ?array &$names): string
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @internal
|
||||||
|
*
|
||||||
* @param mixed[] $params User-provided array of statement parameters.
|
* @param mixed[] $params User-provided array of statement parameters.
|
||||||
* @param mixed[] $names Array generated by parseNamedParams.
|
* @param mixed[] $names Array generated by parseNamedParams.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user