fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [15145] Syncromind: Merge 14936:15027 from trunk


From: sigurdne
Subject: [Fmsystem-commits] [15145] Syncromind: Merge 14936:15027 from trunk
Date: Fri, 13 May 2016 12:25:34 +0000 (UTC)

Revision: 15145
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=15145
Author:   sigurdne
Date:     2016-05-13 12:25:34 +0000 (Fri, 13 May 2016)
Log Message:
-----------
Syncromind: Merge 14936:15027 from trunk

Modified Paths:
--------------
    branches/dev-syncromind-2/rental/inc/model/class.billing.inc.php

Modified: branches/dev-syncromind-2/rental/inc/model/class.billing.inc.php
===================================================================
--- branches/dev-syncromind-2/rental/inc/model/class.billing.inc.php    
2016-05-13 12:25:31 UTC (rev 15144)
+++ branches/dev-syncromind-2/rental/inc/model/class.billing.inc.php    
2016-05-13 12:25:34 UTC (rev 15145)
@@ -123,7 +123,7 @@
 
                public function set_success( $success )
                {
-                       $this->success = (boolean)$success;
+                       $this->success = (bool)$success;
                }
 
                public function set_timestamp_commit( $timestamp_commit )
@@ -140,7 +140,7 @@
                 * Convenience method for checking if a billing job has been 
commited or
                 * not. Checks if the timestamp for commit has been set.
                 *
-                * @return boolean true if job has been commited, false if not.
+                * @return bool true if job has been commited, false if not.
                 */
                public function is_commited()
                {
@@ -157,9 +157,9 @@
                        $this->created_by = (int)$created_by;
                }
 
-               public function set_deleted( boolean $deleted )
+               public function set_deleted( bool $deleted )
                {
-                       $this->deleted = (boolean)$deleted;
+                       $this->deleted = (bool)$deleted;
                }
 
                public function is_deleted()
@@ -177,9 +177,9 @@
                        return $this->has_generated_export;
                }
 
-               public function set_generated_export( boolean 
$has_generated_export )
+               public function set_generated_export( bool 
$has_generated_export )
                {
-                       $this->has_generated_export = 
(boolean)$has_generated_export;
+                       $this->has_generated_export = 
(bool)$has_generated_export;
                }
 
                public function set_export_format( $export_format )




reply via email to

[Prev in Thread] Current Thread [Next in Thread]