Files
faveo/code/vendor/psy/psysh/src/Psy/Presenter/Presenter.php
2015-10-23 14:15:29 +05:30

53 lines
1.1 KiB
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);
}