You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
322 B
PHP
17 lines
322 B
PHP
<?php
|
|
|
|
/* vim: set shiftwidth=2 expandtab softtabstop=2: */
|
|
|
|
namespace Boris;
|
|
|
|
/**
|
|
* Passes values through var_dump() to inspect them.
|
|
*/
|
|
class DumpInspector implements Inspector {
|
|
public function inspect($variable) {
|
|
ob_start();
|
|
var_dump($variable);
|
|
return sprintf(" → %s", trim(ob_get_clean()));
|
|
}
|
|
}
|