| | 570 | * Magic function, for backwards compatibility |
| | 571 | * |
| | 572 | * @since 3.5.0 |
| | 573 | * |
| | 574 | * @param string $name The private member to set |
| | 575 | * @param mixed $value The value to set |
| | 576 | */ |
| | 577 | function __set( $name, $value ) { |
| | 578 | $this->$name = $value; |
| | 579 | } |
| | 580 | |
| | 581 | /** |
| | 582 | * Magic function, for backwards compatibility |
| | 583 | * |
| | 584 | * @since 3.5.0 |
| | 585 | * |
| | 586 | * @param string $name The private member to check |
| | 587 | * |
| | 588 | * @return bool If the member is set or not |
| | 589 | */ |
| | 590 | function __isset( $name ) { |
| | 591 | return isset( $this->$name ); |
| | 592 | } |
| | 593 | |
| | 594 | /** |
| | 595 | * Magic function, for backwards compatibility |
| | 596 | * |
| | 597 | * @since 3.5.0 |
| | 598 | * |
| | 599 | * @param string $name The private member to unset |
| | 600 | */ |
| | 601 | function __unset( $name ) { |
| | 602 | unset( $this->$name ); |
| | 603 | } |
| | 604 | |
| | 605 | /** |