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
bbf31dc4
Unverified
Commit
bbf31dc4
authored
Apr 15, 2020
by
Grégoire Paris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use a proper default value
null contradicts the phpdoc
parent
365b4d7d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
10 deletions
+1
-10
baseline.xml
baseline.xml
+0
-8
Connection.php
lib/Doctrine/DBAL/Connection.php
+1
-1
psalm.xml
psalm.xml
+0
-1
No files found.
baseline.xml
deleted
100644 → 0
View file @
365b4d7d
<?xml version="1.0" encoding="UTF-8"?>
<files
psalm-version=
"3.11.2@d470903722cfcbc1cd04744c5491d3e6d13ec3d9"
>
<file
src=
"lib/Doctrine/DBAL/Driver/Connection.php"
>
<InvalidParamDefault
occurrences=
"1"
>
<code>
int
</code>
</InvalidParamDefault>
</file>
</files>
lib/Doctrine/DBAL/Connection.php
View file @
bbf31dc4
...
...
@@ -823,7 +823,7 @@ class Connection implements DriverConnection
/**
* {@inheritDoc}
*/
public
function
quote
(
$input
,
$type
=
null
)
public
function
quote
(
$input
,
$type
=
ParameterType
::
STRING
)
{
$connection
=
$this
->
getWrappedConnection
();
...
...
psalm.xml
View file @
bbf31dc4
...
...
@@ -6,7 +6,6 @@
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"https://getpsalm.org/schema/config"
xsi:schemaLocation=
"https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
errorBaseline=
"baseline.xml"
>
<projectFiles>
<directory
name=
"lib/Doctrine/DBAL"
/>
...
...
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