diff options
Diffstat (limited to 'phpBB/phpbb/cache')
| -rw-r--r-- | phpBB/phpbb/cache/driver/driver_interface.php | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/phpBB/phpbb/cache/driver/driver_interface.php b/phpBB/phpbb/cache/driver/driver_interface.php index d4569bb314..8444028115 100644 --- a/phpBB/phpbb/cache/driver/driver_interface.php +++ b/phpBB/phpbb/cache/driver/driver_interface.php @@ -25,6 +25,8 @@ interface driver_interface  	/**  	* Unload cache object +	* +	* @return null  	*/  	public function unload(); @@ -56,6 +58,7 @@ interface driver_interface  	* @param string $var_name 		Cache key  	* @param mixed $var 			Cached data to store  	* @param int $ttl 				Time-to-live of cached data +	* @return null  	*/  	public function put($var_name, $var, $ttl = 0); | 
