Files
SRCMS/ThinkPHP/Library/Vendor/Boris/Inspector.php
martinzhou2015 c1dc9cf28e SRCMS
SRCMS(轻响应)企业应急响应中心开发框架模版
2015-07-28 15:15:57 +08:00

20 lines
365 B
PHP

<?php
/* vim: set shiftwidth=2 expandtab softtabstop=2: */
namespace Boris;
/**
* Something that is capable of returning a useful representation of a variable.
*/
interface Inspector {
/**
* Return a debug-friendly string representation of $variable.
*
* @param mixed $variable
*
* @return string
*/
public function inspect($variable);
}