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
28123182
Commit
28123182
authored
Mar 28, 2009
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Removed ParserResultDummy that is no longer necessary.
parent
7479a0cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
78 deletions
+0
-78
ParserResultDummy.php
lib/Doctrine/ORM/Query/ParserResultDummy.php
+0
-78
No files found.
lib/Doctrine/ORM/Query/ParserResultDummy.php
deleted
100644 → 0
View file @
7479a0cf
<?php
namespace
Doctrine\ORM\Query
;
/**
* This class is just an intermediate implementation for refactoring purposes
* and will be replaced by the ParserResult class of the new DQL parser.
*
*/
class
ParserResultDummy
{
private
$_isMixedQuery
;
private
$_dbStatement
;
private
$_isIdentityQuery
;
private
$_hydrationMode
;
private
$_tableToClassAliasMap
;
private
$_queryComponents
;
public
function
isMixedQuery
()
{
return
$this
->
_isMixedQuery
;
}
public
function
isIdentityQuery
()
{
return
$this
->
_isIdentityQuery
;
}
public
function
setMixedQuery
(
$bool
)
{
$this
->
_isMixedQuery
=
(
bool
)
$bool
;
}
public
function
getDatabaseStatement
()
{
return
$this
->
_dbStatement
;
}
public
function
setDatabaseStatement
(
$stmt
)
{
$this
->
_dbStatement
=
$stmt
;
}
public
function
getHydrationMode
()
{
return
$this
->
_hydrationMode
;
}
public
function
setHydrationMode
(
$hydrationMode
)
{
$this
->
_hydrationMode
=
$hydrationMode
;
}
public
function
getTableToClassAliasMap
()
{
return
$this
->
_tableToClassAliasMap
;
}
public
function
getTableAliasMap
()
{
return
$this
->
_tableToClassAliasMap
;
}
public
function
setTableToClassAliasMap
(
array
$map
)
{
$this
->
_tableToClassAliasMap
=
$map
;
}
public
function
setQueryComponents
(
array
$queryComponents
)
{
$this
->
_queryComponents
=
$queryComponents
;
}
public
function
getQueryComponents
()
{
return
$this
->
_queryComponents
;
}
}
\ No newline at end of file
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