This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/VarDumper
Nicolas Grekas 34f5655089 Merge branch '4.4'
* 4.4:
  [ErrorRenderer] FlattenException cannot be final
  Fixing issue where worker-only middleware were run in all contexts
  [Messenger] Removing "sync" transport and replacing it with much nicer config trick
  Use port 465 for SES SMTP transport
  [DI] made the `%env(base64:...)%` processor able to decode base64url
  [VarDumper] improve displaying cut closures
  Set ReturnType of LockFactory to LockInterface
  [EventDispatcher] handle lazy-callable invokable
2019-10-22 17:27:40 +02:00
..
Caster Merge branch '4.4' 2019-10-22 17:27:40 +02:00
Cloner Merge branch '4.4' 2019-10-07 14:45:39 +02:00
Command [Console] Command::execute() should always return int - deprecate returning null 2019-10-02 16:44:58 +02:00
Dumper Merge branch '4.4' 2019-10-14 14:37:23 +02:00
Exception Merge branch '2.8' into 3.4 2018-07-26 10:45:46 +02:00
Resources [VarDumper] Allow dd() to be called without arguments 2018-09-21 13:19:29 +02:00
Server Remove unreachable code 2019-01-28 19:03:55 +01:00
Test Merge branch '4.4' 2019-10-07 14:45:39 +02:00
Tests Merge branch '4.4' 2019-10-15 15:30:26 +02:00
.gitattributes Adding .gitattributes to remove Tests directory from "dist" 2019-09-16 10:12:51 +02:00
.gitignore
CHANGELOG.md [VarDumper] Made all casters final 2019-10-07 11:43:45 +02:00
composer.json Merge branch '4.4' 2019-09-24 18:05:28 +02:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
phpunit.xml.dist Merge branch '2.8' into 3.4 2018-11-11 20:48:54 +01:00
README.md Reword VarDumper description 2019-05-01 11:52:10 +02:00
VarDumper.php [VarDumper] Output the location of calls to dump() 2019-09-28 18:20:13 +02:00

VarDumper Component

The VarDumper component provides mechanisms for walking through any arbitrary PHP variable. It provides a better dump() function that you can use instead of var_dump.

Resources