Email_Abstract::__set( string $name, mixed $value )

Set a value to a dynamic property.


Parameters

$name

(string) (Required) The name of the property.

$value

(mixed) (Required) The value of the property.


Top ↑

Source

File: src/Tickets/Emails/Email_Abstract.php

	public function __set( $name, $value ) {
		$this->data[ $name ] = $value;
	}

Top ↑

Changelog

Changelog
Version Description
5.5.10 Introduced.