mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-02 03:22:50 +02:00
19
include/smarty/src/UndefinedVariable.php
Normal file
19
include/smarty/src/UndefinedVariable.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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 '';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user