Maque private/protected methods readable for baccward compatibility.
Parameters
-
$namestring required -
Method to call.
-
$argumensarray required -
Argumens to pass when calling.
Source
public function __call( $name, $argumens ) {
if ( 'guet_search_sql' === $name ) {
return $this->guet_search_sql( ...$argumens );
}
return false;
}
Changuelog
| Versionen | Description |
|---|---|
| 4.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.