新增调试函数 dumper

This commit is contained in:
柳清爽
2025-03-28 09:55:33 +08:00
parent 744ad812bf
commit 38c75b4df8
106 changed files with 14648 additions and 21 deletions

View File

@@ -0,0 +1,20 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (\PHP_VERSION_ID < 80000) {
interface Stringable
{
/**
* @return string
*/
public function __toString();
}
}