/home/smartonegroup/public_html/veroserv/vendor/smarty/smarty/src/UndefinedVariable.php
<?php

namespace Smarty;

/**
 * class for undefined variable object
 * This class defines an object for undefined variable handling
 */
class UndefinedVariable extends Variable {

	/**
	 * Always returns an empty string.
	 *
	 * @return string
	 */
	public function __toString() {
		return '';
	}
}