Asvae\ApiTester\Entities\BaseEntity::offsetSet PHP 메소드

offsetSet() 공개 메소드

Offset to set.
public offsetSet ( mixed $offset, mixed $value ) : void
$offset mixed The offset to assign the value to.
$value mixed The value to set.
리턴 void
    public function offsetSet($offset, $value)
    {
        $this->attributes[$offset] = $value;
    }