X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fuser%2Fguest%2Fclass_Guest.php;h=84405dc47a9ba8fcb7daf77d6eb579b1c1eb71bf;hb=ec23e72b16433ac136817f3ea78697fb70236e4a;hp=ebaf5086bbe3e74c0fe105490475f648ddff9cfa;hpb=428f13602500ee8408161c0126456f8bfe229472;p=shipsimu.git diff --git a/inc/classes/main/user/guest/class_Guest.php b/inc/classes/main/user/guest/class_Guest.php index ebaf508..84405dc 100644 --- a/inc/classes/main/user/guest/class_Guest.php +++ b/inc/classes/main/user/guest/class_Guest.php @@ -35,12 +35,6 @@ class Guest extends BaseUser implements ManageableGuest, Registerable { protected function __construct () { // Call parent constructor parent::__construct(__CLASS__); - - // Set part description - $this->setObjectDescription("Generic guest class"); - - // Create unique ID number - $this->generateUniqueId(); } /** @@ -107,17 +101,6 @@ class Guest extends BaseUser implements ManageableGuest, Registerable { public function flushPendingUpdates () { // No updates will be flushed to database! } - - /** - * Adds data for later complete update - * - * @param $column Column we want to update - * @param $value New value to store in database - * @return void - */ - public function addUpdateData ($column, $value) { - // Nothing shall be updated by user him/her self - } } // [EOF]