Set value
Example
// Set a value for a property
$item->set('foo', 'bar');
// Set a property value directly
$item->foo = 'bar';
// Set a property using array access
$item['foo'] = 'bar';
Usage
$wireData = $proMailerType->set(string $key, mixed $value);
Arguments
Name | Type(s) | Description |
---|---|---|
key | string | Name of property you want to set |
value | mixed | Value of property |
Return value
Exceptions
Method can throw exceptions on error:
WireException
- If given an invalid value type
See Also
ProMailerType methods and properties
API reference based on ProcessWire core version 3.0.236