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