/home/techb158/exp.abdallabala.com/vendor/symfony/var-dumper/Cloner
NameSizeModeActions
AbstractCloner.php191550644editdlrm
ClonerInterface.php5720644editdlrm
Cursor.php10810644editdlrm
Data.php138140644editdlrm
DumperInterface.php18070644editdlrm
Stub.php15560644editdlrm
VarCloner.php135470644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/symfony/var-dumper/Cloner/ClonerInterface.php (572B)
* * 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 */ 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); }