Tribe__Repository__Decorator::__call( string $name, array $arguments )
Call methods on decorated object.
Contents
Parameters
- $name
-
(string) (Required) Method name.
- $arguments
-
(array) (Required) Method arguments.
Return
(mixed)
Source
File: src/Tribe/Repository/Decorator.php
public function __call( $name, $arguments ) {
return call_user_func_array( [ $this->decorated, $name ], $arguments );
}
Changelog
| Version | Description |
|---|---|
| 4.9.6.1 | Introduced. |