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
3e956e8d
Commit
3e956e8d
authored
Jul 29, 2014
by
Sergey Zhuravel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert CS changes
parent
3b6119c8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+3
-5
PostgreSqlPlatform.php
lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
+0
-1
No files found.
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
3e956e8d
...
@@ -2227,13 +2227,11 @@ abstract class AbstractPlatform
...
@@ -2227,13 +2227,11 @@ abstract class AbstractPlatform
if
(
is_array
(
$item
))
{
if
(
is_array
(
$item
))
{
foreach
(
$item
as
$k
=>
$value
)
{
foreach
(
$item
as
$k
=>
$value
)
{
if
(
is_bool
(
$value
))
{
if
(
is_bool
(
$value
))
{
$item
[
$k
]
=
(
int
)
$value
;
$item
[
$k
]
=
(
int
)
$value
;
}
}
}
}
}
else
{
}
elseif
(
is_bool
(
$item
))
{
if
(
is_bool
(
$item
))
{
$item
=
(
int
)
$item
;
$item
=
(
int
)
$item
;
}
}
}
return
$item
;
return
$item
;
...
...
lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
View file @
3e956e8d
...
@@ -708,7 +708,6 @@ class PostgreSqlPlatform extends AbstractPlatform
...
@@ -708,7 +708,6 @@ class PostgreSqlPlatform extends AbstractPlatform
return
parent
::
convertFromBoolean
(
$item
);
return
parent
::
convertFromBoolean
(
$item
);
}
}
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
...
...
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