Commit 6b18f100 authored by Adrien BRAULT's avatar Adrien BRAULT

#125 PHPDoc Fixes: "int" => "integer"

parent f9f92d92
...@@ -421,7 +421,7 @@ class Connection implements DriverConnection ...@@ -421,7 +421,7 @@ class Connection implements DriverConnection
* *
* @param string $tableName The name of the table on which to delete. * @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. * @param array $identifier The deletion criteria. An associative array containing column-value pairs.
* @return int The number of affected rows. * @return integer The number of affected rows.
*/ */
public function delete($tableName, array $identifier) public function delete($tableName, array $identifier)
{ {
...@@ -453,8 +453,8 @@ class Connection implements DriverConnection ...@@ -453,8 +453,8 @@ class Connection implements DriverConnection
/** /**
* Sets the transaction isolation level. * Sets the transaction isolation level.
* *
* @param int $level The level to set. * @param integer $level The level to set.
* @return int * @return integer
*/ */
public function setTransactionIsolation($level) public function setTransactionIsolation($level)
{ {
...@@ -466,7 +466,7 @@ class Connection implements DriverConnection ...@@ -466,7 +466,7 @@ class Connection implements DriverConnection
/** /**
* Gets the currently active transaction isolation level. * Gets the currently active transaction isolation level.
* *
* @return int The current transaction isolation level. * @return integer The current transaction isolation level.
*/ */
public function getTransactionIsolation() public function getTransactionIsolation()
{ {
...@@ -480,7 +480,7 @@ class Connection implements DriverConnection ...@@ -480,7 +480,7 @@ class Connection implements DriverConnection
* @param array $data * @param array $data
* @param array $identifier The update criteria. An associative array containing column-value pairs. * @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. * @param array $types Types of the merged $data and $identifier arrays in that order.
* @return int The number of affected rows. * @return integer The number of affected rows.
*/ */
public function update($tableName, array $data, array $identifier, array $types = array()) public function update($tableName, array $data, array $identifier, array $types = array())
{ {
......
...@@ -538,7 +538,7 @@ abstract class AbstractPlatform ...@@ -538,7 +538,7 @@ abstract class AbstractPlatform
* Rounds a numeric field to the number of decimals specified. * Rounds a numeric field to the number of decimals specified.
* *
* @param string $column * @param string $column
* @param int $decimals * @param integer $decimals
* @return string * @return string
*/ */
public function getRoundExpression($column, $decimals = 0) public function getRoundExpression($column, $decimals = 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment