Magic isset-er.
Description
Parameters
- $property
-
(string) (Required) Property to check for.
Return
(bool) True if the property is set, false otherwise.
Source
File: src/db-objects/form-categories/form-category.php
public function __isset( $property ) { switch ( $property ) { case 'id': case 'title': return true; } return parent::__isset( $property ); }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |