X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FDataUpdate.php;h=7b9ac2811da2a326fbaef0bb231ff12b18a14db5;hb=3bf0dd2e66d48cfd9d813a29817d86108a684fcd;hp=114ae14495a58630a98ba3f70686db483fbf92b3;hpb=827ff83afe215c5011c2846125b7577ea30ddaae;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DataUpdate.php b/includes/DataUpdate.php index 114ae14495..7b9ac2811d 100644 --- a/includes/DataUpdate.php +++ b/includes/DataUpdate.php @@ -34,7 +34,7 @@ abstract class DataUpdate implements DeferrableUpdate { /** * Constructor */ - public function __construct( ) { + public function __construct() { # noop } @@ -78,7 +78,9 @@ abstract class DataUpdate implements DeferrableUpdate { * @throws Exception|null */ public static function runUpdates( $updates ) { - if ( empty( $updates ) ) return; # nothing to do + if ( empty( $updates ) ) { + return; # nothing to do + } $open_transactions = array(); $exception = null;