| Name | Size | Mode | Actions |
|---|---|---|---|
| AbstractCloner.php | 21333 | 0644 | editdlrm |
| ClonerInterface.php | 459 | 0644 | editdlrm |
| Cursor.php | 1081 | 0644 | editdlrm |
| Data.php | 13656 | 0644 | editdlrm |
| DumperInterface.php | 1892 | 0644 | editdlrm |
| Stub.php | 1596 | 0644 | editdlrm |
| VarCloner.php | 10720 | 0644 | editdlrm |
/var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/var-dumper/Cloner/DumperInterface.php (1892B)
*/ interface DumperInterface { /** * Dumps a scalar value. * * @return void */ public function dumpScalar(Cursor $cursor, string $type, string|int|float|bool|null $value); /** * Dumps a string. * * @param string $str The string being dumped * @param bool $bin Whether $str is UTF-8 or binary encoded * @param int $cut The number of characters $str has been cut by * * @return void */ public function dumpString(Cursor $cursor, string $str, bool $bin, int $cut); /** * Dumps while entering an hash. * * @param int $type A Cursor::HASH_* const for the type of hash * @param string|int|null $class The object class, resource type or array count * @param bool $hasChild When the dump of the hash has child item * * @return void */ public function enterHash(Cursor $cursor, int $type, string|int|null $class, bool $hasChild); /** * Dumps while leaving an hash. * * @param int $type A Cursor::HASH_* const for the type of hash * @param string|int|null $class The object class, resource type or array count * @param bool $hasChild When the dump of the hash has child item * @param int $cut The number of items the hash has been cut by * * @return void */ public function leaveHash(Cursor $cursor, int $type, string|int|null $class, bool $hasChild, int $cut); }