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 B (568 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?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;
}
}