Contao\Feed::__set PHP Метод

__set() публичный Метод

Set an object property
public __set ( string $strKey, mixed $varValue )
$strKey string The property name
$varValue mixed The property value
    public function __set($strKey, $varValue)
    {
        $this->arrData[$strKey] = str_replace(array('[-]', '­', '[nbsp]', ' '), array('', '', ' ', ' '), $varValue);
    }