Files
swiftadmin/vendor/symfony/var-dumper/Cloner/ClonerInterface.php

24 lines
459 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\Cloner;
2022-08-19 19:48:37 +08:00
/**
* @author Nicolas Grekas <p@tchwork.com>
*/
2023-04-25 20:11:49 +08:00
interface ClonerInterface
2022-08-19 19:48:37 +08:00
{
2023-04-25 20:11:49 +08:00
/**
* Clones a PHP variable.
*/
public function cloneVar(mixed $var): Data;
2022-08-19 19:48:37 +08:00
}