Email_Abstract::__set( string $name, mixed $value )
Set a value to a dynamic property.
Contents
Parameters
- $name
-
(string) (Required) The name of the property.
- $value
-
(mixed) (Required) The value of the property.
Source
File: src/Tickets/Emails/Email_Abstract.php
public function __set( $name, $value ) {
$this->data[ $name ] = $value;
}
Changelog
| Version | Description |
|---|---|
| 5.5.10 | Introduced. |