LLMS_Post_Model::__set( string $key, mixed $val )
Magic Setter
Parameters Parameters
- $key
-
(string) (Required) Key of the property.
- $val
-
(mixed) (Required) Value to set the property with.
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.post.model.php
public function __set( $key, $val ) { $this->$key = $val; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |