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
804bd86e
Commit
804bd86e
authored
Sep 20, 2012
by
Guilherme Blanco
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #201 from KonstantinKuklin/master
fix some phpdoc
parents
c27f54b1
a9fc1dee
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
ResultCacheStatement.php
lib/Doctrine/DBAL/Cache/ResultCacheStatement.php
+1
-1
MasterSlaveConnection.php
lib/Doctrine/DBAL/Connections/MasterSlaveConnection.php
+1
-1
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+1
-1
ExpressionBuilder.php
lib/Doctrine/DBAL/Query/Expression/ExpressionBuilder.php
+1
-1
QueryBuilder.php
lib/Doctrine/DBAL/Query/QueryBuilder.php
+1
-1
SingleDatabaseSynchronizer.php
...e/DBAL/Schema/Synchronizer/SingleDatabaseSynchronizer.php
+1
-1
PoolingShardConnection.php
lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php
+1
-1
No files found.
lib/Doctrine/DBAL/Cache/ResultCacheStatement.php
View file @
804bd86e
...
@@ -62,7 +62,7 @@ class ResultCacheStatement implements \IteratorAggregate, ResultStatement
...
@@ -62,7 +62,7 @@ class ResultCacheStatement implements \IteratorAggregate, ResultStatement
private
$lifetime
;
private
$lifetime
;
/**
/**
* @var Doctrine\DBAL\Driver\Statement
* @var
\
Doctrine\DBAL\Driver\Statement
*/
*/
private
$statement
;
private
$statement
;
...
...
lib/Doctrine/DBAL/Connections/MasterSlaveConnection.php
View file @
804bd86e
...
@@ -86,7 +86,7 @@ class MasterSlaveConnection extends Connection
...
@@ -86,7 +86,7 @@ class MasterSlaveConnection extends Connection
/**
/**
* Master and slave connection (one of the randomly picked slaves)
* Master and slave connection (one of the randomly picked slaves)
*
*
* @var Doctrine\DBAL\Driver\Connection[]
* @var
\
Doctrine\DBAL\Driver\Connection[]
*/
*/
protected
$connections
=
array
(
'master'
=>
null
,
'slave'
=>
null
);
protected
$connections
=
array
(
'master'
=>
null
,
'slave'
=>
null
);
...
...
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
804bd86e
...
@@ -103,7 +103,7 @@ abstract class AbstractPlatform
...
@@ -103,7 +103,7 @@ abstract class AbstractPlatform
protected
$doctrineTypeComments
=
null
;
protected
$doctrineTypeComments
=
null
;
/**
/**
* @var Doctrine\Common\EventManager
* @var
\
Doctrine\Common\EventManager
*/
*/
protected
$_eventManager
;
protected
$_eventManager
;
...
...
lib/Doctrine/DBAL/Query/Expression/ExpressionBuilder.php
View file @
804bd86e
...
@@ -40,7 +40,7 @@ class ExpressionBuilder
...
@@ -40,7 +40,7 @@ class ExpressionBuilder
const
GTE
=
'>='
;
const
GTE
=
'>='
;
/**
/**
* @var Doctrine\DBAL\Connection DBAL Connection
* @var
\
Doctrine\DBAL\Connection DBAL Connection
*/
*/
private
$connection
=
null
;
private
$connection
=
null
;
...
...
lib/Doctrine/DBAL/Query/QueryBuilder.php
View file @
804bd86e
...
@@ -50,7 +50,7 @@ class QueryBuilder
...
@@ -50,7 +50,7 @@ class QueryBuilder
const
STATE_CLEAN
=
1
;
const
STATE_CLEAN
=
1
;
/**
/**
* @var Doctrine\DBAL\Connection DBAL Connection
* @var
\
Doctrine\DBAL\Connection DBAL Connection
*/
*/
private
$connection
=
null
;
private
$connection
=
null
;
...
...
lib/Doctrine/DBAL/Schema/Synchronizer/SingleDatabaseSynchronizer.php
View file @
804bd86e
...
@@ -31,7 +31,7 @@ use Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector;
...
@@ -31,7 +31,7 @@ use Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector;
class
SingleDatabaseSynchronizer
extends
AbstractSchemaSynchronizer
class
SingleDatabaseSynchronizer
extends
AbstractSchemaSynchronizer
{
{
/**
/**
* @var Doctrine\DBAL\Platforms\AbstractPlatform
* @var
\
Doctrine\DBAL\Platforms\AbstractPlatform
*/
*/
private
$platform
;
private
$platform
;
...
...
lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php
View file @
804bd86e
...
@@ -155,7 +155,7 @@ class PoolingShardConnection extends Connection
...
@@ -155,7 +155,7 @@ class PoolingShardConnection extends Connection
$this
->
_conn
=
$this
->
activeConnections
[
$this
->
activeShardId
]
=
$this
->
connectTo
(
$this
->
activeShardId
);
$this
->
_conn
=
$this
->
activeConnections
[
$this
->
activeShardId
]
=
$this
->
connectTo
(
$this
->
activeShardId
);
if
(
$this
->
_eventManager
->
hasListeners
(
Events
::
postConnect
))
{
if
(
$this
->
_eventManager
->
hasListeners
(
Events
::
postConnect
))
{
$eventArgs
=
new
Event\ConnectionEventArgs
(
$this
);
$eventArgs
=
new
\Doctrine\DBAL\
Event\ConnectionEventArgs
(
$this
);
$this
->
_eventManager
->
dispatchEvent
(
Events
::
postConnect
,
$eventArgs
);
$this
->
_eventManager
->
dispatchEvent
(
Events
::
postConnect
,
$eventArgs
);
}
}
...
...
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