Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wp-migrate-db
/
vendor
/
php-di
/
php-di
/
src
/
DI
:
Debug.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace DeliciousBrains\WPMDB\Container\DI; use DeliciousBrains\WPMDB\Container\DI\Definition\Definition; /** * Debug utilities. * * @author Matthieu Napoli <matthieu@mnapoli.fr> */ class Debug { /** * Dump the definition to a string. * * @return string * * @deprecated You should cast the definition to string instead. * This feature was simplified: definitions can be cast to string directly. */ public static function dumpDefinition(Definition $definition) { return (string) $definition; } }