File "Debug.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wp-migrate-db/vendor/php-di/php-di/src/DI/Debug.php
File size: 568 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}