Debug_Bar_Pretty_Output::object_info PHP Метод

object_info() приватный статический Метод

Print pretty output about objects.
Устаревший: since v1.3 in favour of get_object_info().
private static object_info ( object $obj, boolean $escape, string $space, boolean $short, string $deprecated = null ) : void
$obj object Object to show.
$escape boolean (internal) Whether to character escape the textual output.
$space string (internal) Indentation spacing.
$short boolean (internal) Short or normal annotation.
$deprecated string ==Deprecated argument.
Результат void
        private static function object_info($obj, $escape, $space, $short, $deprecated = null)
        {
            _deprecated_function(__CLASS__ . '::' . __METHOD__, __CLASS__ . ' 1.3', __CLASS__ . '::get_object_info() ' . esc_html__('or even better: upgrade your Debug Bar plugins to their current version', 'db-pretty-output'));
            echo self::get_object_info($obj, $escape, $space, $short);
            // WPCS: xss ok.
        }