Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
05fcd8c7
Unverified
Commit
05fcd8c7
authored
Apr 24, 2020
by
Grégoire Paris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document null as a possible type
parent
dc8d2f34
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
Connection.php
lib/Doctrine/DBAL/Connection.php
+3
-3
SQLLogger.php
lib/Doctrine/DBAL/Logging/SQLLogger.php
+3
-3
SQLParserUtils.php
lib/Doctrine/DBAL/SQLParserUtils.php
+3
-3
No files found.
lib/Doctrine/DBAL/Connection.php
View file @
05fcd8c7
...
...
@@ -1035,8 +1035,8 @@ class Connection implements DriverConnection
* This method supports PDO binding types as well as DBAL mapping types.
*
* @param string $query The SQL query.
* @param
mixed[]
$params The query parameters.
* @param
int[]|string[]
$types The parameter types.
* @param
array<mixed>
$params The query parameters.
* @param
array<int|string|null>
$types The parameter types.
*
* @return int The number of affected rows.
*
...
...
lib/Doctrine/DBAL/Logging/SQLLogger.php
View file @
05fcd8c7
...
...
@@ -12,7 +12,7 @@ interface SQLLogger
*
* @param string $sql The SQL to be executed.
* @param mixed[]|null $params The SQL parameters.
* @param
int[]|string[]|null
$types The SQL parameter types.
* @param
array<int|string|null>
$types The SQL parameter types.
*
* @return void
*/
...
...
lib/Doctrine/DBAL/SQLParserUtils.php
View file @
05fcd8c7
...
...
@@ -120,7 +120,7 @@ class SQLParserUtils
*
* @param string $query The SQL query to execute.
* @param mixed[] $params The parameters to bind to the query.
* @param
int[]|string[]
$types The types the previous parameters are in.
* @param
array<string|int|null>
$types The types the previous parameters are in.
*
* @return mixed[]
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment