Vinelab\Minion\Dictionary::__get PHP Method

__get() public method

Override the magic __get to reach the attribtues of this dictionary.
public __get ( string $attribute ) : mixed
$attribute string
return mixed
    public function __get($attribute)
    {
        if (isset($this->dictionary->{$attribute})) {
            return $this->dictionary->{$attribute};
        }
    }