Vinelab\Minion\Dictionary::__get PHP Méthode

__get() public méthode

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