golden hour
/home/phakp/public_html/erp/includes/symfony/var-dumper/Cloner
⬆️ Go Up
Upload
File/Folder
Size
Actions
AbstractCloner.php
13.1 KB
Del
OK
ClonerInterface.php
548 B
Del
OK
Cursor.php
964 B
Del
OK
Data.php
7.25 KB
Del
OK
DumperInterface.php
1.86 KB
Del
OK
Stub.php
862 B
Del
OK
VarCloner.php
9.7 KB
Del
OK
Edit: ClonerInterface.php
<?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. */ namespace Symfony\Component\VarDumper\Cloner; /** * @author Nicolas Grekas <p@tchwork.com> */ interface ClonerInterface { /** * Clones a PHP variable. * * @param mixed $var Any PHP variable * * @return Data The cloned variable represented by a Data object */ public function cloneVar($var); }
Save