1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace Symfony\Component\VarDumper\Cloner;
- interface DumperInterface
- {
-
- public function dumpScalar(Cursor $cursor, string $type, $value);
-
- public function dumpString(Cursor $cursor, string $str, bool $bin, int $cut);
-
- public function enterHash(Cursor $cursor, int $type, $class, bool $hasChild);
-
- public function leaveHash(Cursor $cursor, int $type, $class, bool $hasChild, int $cut);
- }
|