From 9851c8a9decf584c93ea08092b9ce4955c310704 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Tue, 21 Jan 2014 07:26:48 +0100 Subject: [PATCH] omogenized function definition syntax (no space between name and parentesis --- web/Obj/brisk.phh | 2 +- web/Obj/user.phh | 2 +- web/briskin5/Obj/briskin5.phh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index 5e4f790..5e75783 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -845,7 +845,7 @@ class Room var $delay_mgr; - function Room ($crystal_filename) { + function Room($crystal_filename) { $this->crystal_filename = $crystal_filename; $this->user = array(); $this->table = array(); diff --git a/web/Obj/user.phh b/web/Obj/user.phh index 9ce7967..7fb6d16 100644 --- a/web/Obj/user.phh +++ b/web/Obj/user.phh @@ -744,7 +744,7 @@ class User { return ($ret); - } // function maincheck (... + } // function maincheck(... public static function stream_fini($transp, $init_string, $is_unrecoverable) { diff --git a/web/briskin5/Obj/briskin5.phh b/web/briskin5/Obj/briskin5.phh index 1439943..4111281 100644 --- a/web/briskin5/Obj/briskin5.phh +++ b/web/briskin5/Obj/briskin5.phh @@ -1135,7 +1135,7 @@ class Bin5_user extends User { return ($ret); - } // function maincheck (... + } // function maincheck(... function continue_set($match_code) { @@ -1167,7 +1167,7 @@ class Bin5 { var $delay_mgr; - function Bin5 ($room, $table_idx, $table_token, $get, $post, $cookie) { + function Bin5($room, $table_idx, $table_token, $get, $post, $cookie) { $this->user = array(); $this->table = array(); -- 2.17.1