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
8f119eea
Commit
8f119eea
authored
Sep 15, 2013
by
Guilherme Blanco
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #372 from javer/hhvm-func_get_args
HHVM compatibility: func_get_args
parents
ed7c1c0b
75402954
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
SQLSrvStatement.php
lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php
+2
-2
QueryBuilder.php
lib/Doctrine/DBAL/Query/QueryBuilder.php
+4
-4
No files found.
lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php
View file @
8f119eea
...
...
@@ -220,14 +220,14 @@ class SQLSrvStatement implements IteratorAggregate, Statement
*/
public
function
fetch
(
$fetchMode
=
null
)
{
$args
=
func_get_args
();
$fetchMode
=
$fetchMode
?:
$this
->
defaultFetchMode
;
if
(
isset
(
self
::
$fetchMap
[
$fetchMode
]))
{
return
sqlsrv_fetch_array
(
$this
->
stmt
,
self
::
$fetchMap
[
$fetchMode
]);
}
else
if
(
$fetchMode
==
PDO
::
FETCH_OBJ
||
$fetchMode
==
PDO
::
FETCH_CLASS
)
{
$className
=
null
;
$ctorArgs
=
null
;
if
(
func_num_args
()
>=
2
)
{
$args
=
func_get_args
();
if
(
count
(
$args
)
>=
2
)
{
$className
=
$args
[
1
];
$ctorArgs
=
(
isset
(
$args
[
2
]))
?
$args
[
2
]
:
array
();
}
...
...
lib/Doctrine/DBAL/Query/QueryBuilder.php
View file @
8f119eea
...
...
@@ -743,8 +743,8 @@ class QueryBuilder
*/
public
function
andWhere
(
$where
)
{
$where
=
$this
->
getQueryPart
(
'where'
);
$args
=
func_get_args
();
$where
=
$this
->
getQueryPart
(
'where'
);
if
(
$where
instanceof
CompositeExpression
&&
$where
->
getType
()
===
CompositeExpression
::
TYPE_AND
)
{
$where
->
addMultiple
(
$args
);
...
...
@@ -776,8 +776,8 @@ class QueryBuilder
*/
public
function
orWhere
(
$where
)
{
$where
=
$this
->
getQueryPart
(
'where'
);
$args
=
func_get_args
();
$where
=
$this
->
getQueryPart
(
'where'
);
if
(
$where
instanceof
CompositeExpression
&&
$where
->
getType
()
===
CompositeExpression
::
TYPE_OR
)
{
$where
->
addMultiple
(
$args
);
...
...
@@ -869,8 +869,8 @@ class QueryBuilder
*/
public
function
andHaving
(
$having
)
{
$having
=
$this
->
getQueryPart
(
'having'
);
$args
=
func_get_args
();
$having
=
$this
->
getQueryPart
(
'having'
);
if
(
$having
instanceof
CompositeExpression
&&
$having
->
getType
()
===
CompositeExpression
::
TYPE_AND
)
{
$having
->
addMultiple
(
$args
);
...
...
@@ -892,8 +892,8 @@ class QueryBuilder
*/
public
function
orHaving
(
$having
)
{
$having
=
$this
->
getQueryPart
(
'having'
);
$args
=
func_get_args
();
$having
=
$this
->
getQueryPart
(
'having'
);
if
(
$having
instanceof
CompositeExpression
&&
$having
->
getType
()
===
CompositeExpression
::
TYPE_OR
)
{
$having
->
addMultiple
(
$args
);
...
...
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