mambax7/extcal

View on GitHub
class/EventNotMember.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace XoopsModules\Extcal;

/*
 * You may not change or alter any portion of this comment or credits
 * of supporting developers from this source code or any supporting source code
 * which is considered copyrighted (c) material of the original comment or credit authors.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */

/**
 * @copyright    {@link https://xoops.org/ XOOPS Project}
 * @license      {@link https://www.gnu.org/licenses/gpl-2.0.html GNU GPL 2 or later}
 * @package      extcal
 * @since
 * @author       XOOPS Development Team,
 */

// require_once __DIR__ . '/ExtcalPersistableObjectHandler.php';

/**
 * Class EventNotMember.
 */
class EventNotMember extends \XoopsObject
{
    /**
     * EventNotMember constructor.
     */
    public function __construct()
    {
        $this->initVar('eventnotmember_id', \XOBJ_DTYPE_INT, null, false);
        $this->initVar('event_id', \XOBJ_DTYPE_INT, null, true);
        $this->initVar('uid', \XOBJ_DTYPE_INT, null, true);
    }
}