BeCastWebEngine/core/template/src/UndefinedVariable.php
2025-06-20 19:10:23 +02:00

19 lines
300 B
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 '';
}
}