* @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link http://orange-management.com */ namespace Modules\Admin\Models; class Group extends \phpOMS\Account\Group { protected $createdAt = null; public function getCreatedAt() : \DateTime { return $this->createdAt ?? new \DateTime('NOW'); } }