PATH:
home
/
centosnipponia
/
public_html
/
apptt
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
<?php namespace Doctrine\DBAL; use function sprintf; /** * Doctrine\DBAL\ConnectionException * * @psalm-immutable */ class SQLParserUtilsException extends Exception { /** * @param string $paramName * * @return SQLParserUtilsException */ public static function missingParam($paramName) { return new self( sprintf('Value for :%1$s not found in params array. Params array key should be "%1$s"', $paramName) ); } /** * @param string $typeName * * @return SQLParserUtilsException */ public static function missingType($typeName) { return new self( sprintf('Value for :%1$s not found in types array. Types array key should be "%1$s"', $typeName) ); } }
[+]
..
[+]
Abstraction
[+]
Cache
[-] ColumnCase.php
[edit]
[-] Configuration.php
[edit]
[-] Connection.php
[edit]
[-] ConnectionException.php
[edit]
[+]
Connections
[-] DBALException.php
[edit]
[-] Driver.php
[edit]
[+]
Driver
[-] DriverManager.php
[edit]
[+]
Event
[-] Events.php
[edit]
[-] Exception.php
[edit]
[+]
Exception
[-] FetchMode.php
[edit]
[+]
Id
[-] LockMode.php
[edit]
[+]
Logging
[-] ParameterType.php
[edit]
[+]
Platforms
[+]
Portability
[+]
Query
[-] SQLParserUtils.php
[edit]
[-] SQLParserUtilsException.php
[edit]
[+]
Schema
[+]
Sharding
[-] Statement.php
[edit]
[+]
Tools
[-] TransactionIsolationLevel.php
[edit]
[+]
Types
[-] Version.php
[edit]
[-] VersionAwarePlatformDriver.php
[edit]
[-] .htaccess.disabled
[edit]