lithium\data\Model::_object()

protected static method
This method is deprecated.

Retrieves a configured and initialized instance of the class.

Returns

\lithium\data\Model

An instance of the class.

Source

	protected static function &_object() {
		$message  = '`' . __METHOD__ . '()` has been made public. ';
		$message .= 'Use `\lithium\data\Model::object()` instead.';
		trigger_error($message, E_USER_DEPRECATED);

		return static::object();
	}