X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fdb%2FIORMRow.php;h=c66cddfd5dd9f96a310874ba2db323a21d0cbb77;hb=166191535f486569277e95b7e6a3850b5db6757d;hp=21ae808eff5155f1f5e96a59b6902b8d14483a15;hpb=e92d87c26c408441d8c229fc1e9c7e0bcd93898a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/db/IORMRow.php b/includes/db/IORMRow.php index 21ae808eff..c66cddfd5d 100644 --- a/includes/db/IORMRow.php +++ b/includes/db/IORMRow.php @@ -39,8 +39,8 @@ interface IORMRow { * @deprecated since 1.22 * * @param array|null $fields - * @param boolean $override - * @param boolean $skipLoaded + * @param bool $override + * @param bool $skipLoaded * * @return bool Success indicator */ @@ -85,7 +85,7 @@ interface IORMRow { * * @since 1.20 * - * @return integer|null + * @return int|null */ public function getId(); @@ -94,7 +94,7 @@ interface IORMRow { * * @since 1.20 * - * @param integer|null $id + * @param int|null $id */ public function setId( $id ); @@ -105,7 +105,7 @@ interface IORMRow { * * @param string $name * - * @return boolean + * @return bool */ public function hasField( $name ); @@ -114,7 +114,7 @@ interface IORMRow { * * @since 1.20 * - * @return boolean + * @return bool */ public function hasIdField(); @@ -124,7 +124,7 @@ interface IORMRow { * @since 1.20 * * @param array $fields The fields to set - * @param boolean $override Override already set fields with the provided values? + * @param bool $override Override already set fields with the provided values? */ public function setFields( array $fields, $override = true ); @@ -135,7 +135,7 @@ interface IORMRow { * @since 1.20 * * @param null|array $fields - * @param boolean $incNullId + * @param bool $incNullId * * @return array */ @@ -147,7 +147,7 @@ interface IORMRow { * @since 1.20 * @deprecated since 1.22 * - * @param boolean $override + * @param bool $override */ public function loadDefaults( $override = true ); @@ -160,7 +160,7 @@ interface IORMRow { * @param string|null $functionName * @deprecated since 1.22 * - * @return boolean Success indicator + * @return bool Success indicator */ public function save( $functionName = null ); @@ -170,7 +170,7 @@ interface IORMRow { * @since 1.20 * @deprecated since 1.22 * - * @return boolean Success indicator + * @return bool Success indicator */ public function remove(); @@ -213,9 +213,9 @@ interface IORMRow { * @deprecated since 1.22 * * @param string $field - * @param integer $amount + * @param int $amount * - * @return boolean Success indicator + * @return bool Success indicator */ public function addToField( $field, $amount ); @@ -244,7 +244,7 @@ interface IORMRow { * @since 1.20 * @deprecated since 1.22 * - * @param boolean $update + * @param bool $update */ public function setUpdateSummaries( $update ); @@ -254,7 +254,7 @@ interface IORMRow { * @since 1.20 * @deprecated since 1.22 * - * @param boolean $summaryMode + * @param bool $summaryMode */ public function setSummaryMode( $summaryMode );