Files
swiftadmin/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php

25 lines
505 B
PHP
Raw Normal View History

2022-08-19 19:48:37 +08:00
<?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.
*/
2023-04-25 20:11:49 +08:00
namespace Symfony\Component\VarDumper\Dumper;
use Symfony\Component\VarDumper\Cloner\Data;
2022-08-19 19:48:37 +08:00
/**
2023-04-25 20:11:49 +08:00
* DataDumperInterface for dumping Data objects.
2022-08-19 19:48:37 +08:00
*
2023-04-25 20:11:49 +08:00
* @author Nicolas Grekas <p@tchwork.com>
2022-08-19 19:48:37 +08:00
*/
2023-04-25 20:11:49 +08:00
interface DataDumperInterface
2022-08-19 19:48:37 +08:00
{
2023-04-25 20:11:49 +08:00
public function dump(Data $data);
2022-08-19 19:48:37 +08:00
}