mirror of
https://e.coding.net/circlecloud/MinecraftAccount.git
synced 2025-11-25 21:36:08 +00:00
14
ThinkPHP/Library/Vendor/Boris/ExportInspector.php
vendored
Normal file
14
ThinkPHP/Library/Vendor/Boris/ExportInspector.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
/* vim: set shiftwidth=2 expandtab softtabstop=2: */
|
||||
|
||||
namespace Boris;
|
||||
|
||||
/**
|
||||
* Passes values through var_export() to inspect them.
|
||||
*/
|
||||
class ExportInspector implements Inspector {
|
||||
public function inspect($variable) {
|
||||
return sprintf(" → %s", var_export($variable, true));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user