Bolt\Storage\Entity\MagicAttributeTrait::__set PHP Method

__set() public method

public __set ( $key, $value )
    public function __set($key, $value)
    {
        $method = 'set' . ucfirst($key);
        $this->{$method}($value);
    }