Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/ipol.sdek/classes/lib/Core/Entity/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/ipol.sdek/classes/lib/Core/Entity/BasicEntity.php

<?php

namespace Ipolh\SDEK\Core\Entity;

/**
 * Class BasicEntity
 * @package Ipolh\SDEK\Core
 * @subpackage Entity
 */
class BasicEntity
{
    protected $fields;

    public function getField($code)
    {
        return (array_key_exists($code, $this->fields)) ? $this->fields[$code] : false;
    }

    public function setField($code, $val)
    {
        $this->fields[$code] = $val;

        return $this;
    }

    public function getFieldList()
    {
        return array_keys($this->fields);
    }
}