HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers76/deblijdewei.nl/vendor/psy/psysh/src/Psy/Presenter/Presenter.php
<?php

/*
 * This file is part of Psy Shell
 *
 * (c) 2012-2014 Justin Hileman
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Psy\Presenter;

/**
 * Presenter classes are able to pretty-print values for display. Think
 * `var_dump`, but with sane and beautiful output.
 */
interface Presenter
{
    const VERBOSE = 1;

    /**
     * Check whether this Presenter can present $value.
     *
     * @param mixed $value
     *
     * @return boolean
     */
    public function canPresent($value);

    /**
     * Present a reference to the value.
     *
     * @param mixed $value
     *
     * @return string
     */
    public function presentRef($value);

    /**
     * Present a full representation of the value.
     *
     * Optionally pass a $depth argument to limit the depth of recursive values.
     *
     * @param mixed $value
     * @param int   $depth   (default: null)
     * @param int   $options One of Presenter constants
     *
     * @return string
     */
    public function present($value, $depth = null, $options = 0);
}