oms-Admin/Models/GroupPermission.php

39 lines
720 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @category TBD
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Admin\Models;
use phpOMS\Account\PermissionAbstract;
/**
* InfoManager class.
*
* Handling the info files for modules
*
* @category Framework
* @package phpOMS\Module
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
class GroupPermission extends PermissionAbstract
{
private $group = 0;
public function getGroup() : int
{
return $this->group;
}
}