Annotation
5 years ago
Definition
5 years ago
Invoker
5 years ago
Proxy
5 years ago
Reflection
5 years ago
Container.php
5 years ago
ContainerBuilder.php
5 years ago
Debug.php
5 years ago
DependencyException.php
5 years ago
FactoryInterface.php
5 years ago
InvokerInterface.php
5 years ago
NotFoundException.php
5 years ago
Scope.php
5 years ago
functions.php
5 years ago
Debug.php
40 lines
| 1 | <?php |
| 2 | /** |
| 3 | * PHP-DI |
| 4 | * |
| 5 | * @link http://php-di.org/ |
| 6 | * @copyright Matthieu Napoli (http://mnapoli.fr/) |
| 7 | * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file) |
| 8 | */ |
| 9 | |
| 10 | namespace Cybot\Dependencies\DI; |
| 11 | |
| 12 | use Cybot\Dependencies\DI\Definition\Definition; |
| 13 | use Cybot\Dependencies\DI\Definition\Dumper\DefinitionDumperDispatcher; |
| 14 | |
| 15 | /** |
| 16 | * Debug utilities. |
| 17 | * |
| 18 | * @author Matthieu Napoli <matthieu@mnapoli.fr> |
| 19 | */ |
| 20 | class Debug |
| 21 | { |
| 22 | /** |
| 23 | * Dump the definition to a string. |
| 24 | * |
| 25 | * @param Definition $definition |
| 26 | * |
| 27 | * @return string |
| 28 | */ |
| 29 | public static function dumpDefinition(Definition $definition) |
| 30 | { |
| 31 | static $dumper; |
| 32 | |
| 33 | if (! $dumper) { |
| 34 | $dumper = new DefinitionDumperDispatcher(); |
| 35 | } |
| 36 | |
| 37 | return $dumper->dump($definition); |
| 38 | } |
| 39 | } |
| 40 |