Tribe__Repository__Decorator::__call( string $name, array $arguments )

Call methods on decorated object.


Parameters

$name

(string) (Required) Method name.

$arguments

(array) (Required) Method arguments.


Top ↑

Return

(mixed)


Top ↑

Source

File: src/Tribe/Repository/Decorator.php

	public function __call( $name, $arguments ) {
		return call_user_func_array( [ $this->decorated, $name ], $arguments );
	}

Top ↑

Changelog

Changelog
Version Description
4.9.6.1 Introduced.