mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-19 06:51:33 +02:00
[ticket/11700] Move all recent code to namespaces
PHPBB3-11700
This commit is contained in:
@@ -7,6 +7,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\template\twig;
|
||||
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
@@ -18,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
||||
/**
|
||||
* This class holds all DEFINE variables from the current page load
|
||||
*/
|
||||
class phpbb_template_twig_definition
|
||||
class definition
|
||||
{
|
||||
/** @var array **/
|
||||
protected $definitions = array();
|
||||
@@ -39,7 +41,7 @@ class phpbb_template_twig_definition
|
||||
*
|
||||
* @param string $name
|
||||
* @param mixed $value
|
||||
* @return phpbb_template_twig_definition
|
||||
* @return \phpbb\template\twig\definition
|
||||
*/
|
||||
public function set($name, $value)
|
||||
{
|
||||
@@ -53,7 +55,7 @@ class phpbb_template_twig_definition
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
* @return phpbb_template_twig_definition
|
||||
* @return \phpbb\template\twig\definition
|
||||
*/
|
||||
public function append($name, $value)
|
||||
{
|
||||
|
Reference in New Issue
Block a user