aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/template/context.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-15 15:05:51 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-15 19:15:06 +0200
commit0d0113e6da590c113068a60864d44372a2fbccab (patch)
tree8930400497c37cf754c29a52e4034e043307967c /phpBB/phpbb/template/context.php
parente6b422517b17d0f3eb9ccf231ae0e4f5459efdf9 (diff)
downloadforums-0d0113e6da590c113068a60864d44372a2fbccab.tar
forums-0d0113e6da590c113068a60864d44372a2fbccab.tar.gz
forums-0d0113e6da590c113068a60864d44372a2fbccab.tar.bz2
forums-0d0113e6da590c113068a60864d44372a2fbccab.tar.xz
forums-0d0113e6da590c113068a60864d44372a2fbccab.zip
[ticket/12715] Cleanup comments in \phpbb\template\*
PHPBB3-12715
Diffstat (limited to 'phpBB/phpbb/template/context.php')
-rw-r--r--phpBB/phpbb/template/context.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/template/context.php b/phpBB/phpbb/template/context.php
index 8df6c8b492..0a32879943 100644
--- a/phpBB/phpbb/template/context.php
+++ b/phpBB/phpbb/template/context.php
@@ -55,6 +55,7 @@ class context
*
* @param string $varname Variable name
* @param string $varval Value to assign to variable
+ * @return true
*/
public function assign_var($varname, $varval)
{
@@ -70,6 +71,7 @@ class context
*
* @param string $varname Variable name
* @param string $varval Value to append to variable
+ * @return true
*/
public function append_var($varname, $varval)
{
@@ -117,6 +119,7 @@ class context
*
* @param string $blockname Name of block to assign $vararray to
* @param array $vararray A hash of variable name => value pairs
+ * @return true
*/
public function assign_block_vars($blockname, array $vararray)
{
@@ -206,6 +209,7 @@ class context
*
* @param string $blockname Name of block to assign $block_vars_array to
* @param array $block_vars_array An array of hashes of variable name => value pairs
+ * @return true
*/
public function assign_block_vars_array($blockname, array $block_vars_array)
{
@@ -374,6 +378,7 @@ class context
* Reset/empty complete block
*
* @param string $blockname Name of block to destroy
+ * @return true
*/
public function destroy_block_vars($blockname)
{