Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/forum/lib/internals/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/forum/lib/internals/entitybasemethods.php

<?php
namespace Bitrix\Forum\Internals;
trait EntityBaseMethods
{
	/** @var int */
//	protected $id = 0;
	/** @var array */
//	protected $data = [];

	public function getId()
	{
		return $this->id;
	}

	public function getData()
	{
		return $this->data;
	}

	public function offsetExists($offset): bool
	{
		return array_key_exists($offset, $this->data);
	}

	public function offsetGet($offset): mixed
	{
		return $this->data[$offset];
	}

	public function offsetSet($offset, $value): void
	{

	}

	public function offsetUnset($offset): void
	{

	}
}