Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\VarDumper\Cloner; Chris@0: Chris@0: /** Chris@0: * @author Nicolas Grekas Chris@0: */ Chris@0: interface ClonerInterface Chris@0: { Chris@0: /** Chris@0: * Clones a PHP variable. Chris@0: * Chris@0: * @param mixed $var Any PHP variable Chris@0: * Chris@0: * @return Data The cloned variable represented by a Data object Chris@0: */ Chris@0: public function cloneVar($var); Chris@0: }