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
6b18f100
Commit
6b18f100
authored
Apr 02, 2012
by
Adrien BRAULT
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#125 PHPDoc Fixes: "int" => "integer"
parent
f9f92d92
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
Connection.php
lib/Doctrine/DBAL/Connection.php
+5
-5
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+1
-1
No files found.
lib/Doctrine/DBAL/Connection.php
View file @
6b18f100
...
...
@@ -421,7 +421,7 @@ class Connection implements DriverConnection
*
* @param string $tableName The name of the table on which to delete.
* @param array $identifier The deletion criteria. An associative array containing column-value pairs.
* @return int The number of affected rows.
* @return int
eger
The number of affected rows.
*/
public
function
delete
(
$tableName
,
array
$identifier
)
{
...
...
@@ -453,8 +453,8 @@ class Connection implements DriverConnection
/**
* Sets the transaction isolation level.
*
* @param int $level The level to set.
* @return int
* @param int
eger
$level The level to set.
* @return int
eger
*/
public
function
setTransactionIsolation
(
$level
)
{
...
...
@@ -466,7 +466,7 @@ class Connection implements DriverConnection
/**
* Gets the currently active transaction isolation level.
*
* @return int The current transaction isolation level.
* @return int
eger
The current transaction isolation level.
*/
public
function
getTransactionIsolation
()
{
...
...
@@ -480,7 +480,7 @@ class Connection implements DriverConnection
* @param array $data
* @param array $identifier The update criteria. An associative array containing column-value pairs.
* @param array $types Types of the merged $data and $identifier arrays in that order.
* @return int The number of affected rows.
* @return int
eger
The number of affected rows.
*/
public
function
update
(
$tableName
,
array
$data
,
array
$identifier
,
array
$types
=
array
())
{
...
...
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
6b18f100
...
...
@@ -538,7 +538,7 @@ abstract class AbstractPlatform
* Rounds a numeric field to the number of decimals specified.
*
* @param string $column
* @param int $decimals
* @param int
eger
$decimals
* @return string
*/
public
function
getRoundExpression
(
$column
,
$decimals
=
0
)
...
...
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