BuddyPress::__call( string $name = '', array $args = array() )

Magic method to prevent notices and errors from invalid method calls.


Description Description


Parameters Parameters

$name

(Optional)

Default value: ''

$args

(Optional)

Default value: array()


Top ↑

Return Return

(null)


Top ↑

Source Source

File: class-buddypress.php

	public function __call( $name = '', $args = array() ) { unset( $name, $args ); return null; }

Top ↑

Changelog Changelog

Changelog
Version Description
1.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.