12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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);
- }
|