Make generalizeSQL() protected
[lhc/web/wiklou.git] / includes / db / IORMRow.php
index 21ae808..c66cddf 100644 (file)
@@ -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 );