aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2016-04-03 16:27:08 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2016-04-03 16:27:08 +0200
commit02469d46912c1e739f2ca134368db0dbfed74b50 (patch)
tree81f1541362653bb0afc2e840984e737ea8b2f134
parentff9632261e93d5f309541babd5e1fd48530e4c43 (diff)
parentd747ac146e374baf352a9d81d476727813a2eb0f (diff)
downloadforums-02469d46912c1e739f2ca134368db0dbfed74b50.tar
forums-02469d46912c1e739f2ca134368db0dbfed74b50.tar.gz
forums-02469d46912c1e739f2ca134368db0dbfed74b50.tar.bz2
forums-02469d46912c1e739f2ca134368db0dbfed74b50.tar.xz
forums-02469d46912c1e739f2ca134368db0dbfed74b50.zip
Merge branch 'ticket/13683' into ticket/13683-3.2.x
* ticket/13683: [ticket/13683] Fix CS
-rw-r--r--phpBB/phpbb/controller/helper.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/phpBB/phpbb/controller/helper.php b/phpBB/phpbb/controller/helper.php
index 9dbc3737f7..664b4f4e0f 100644
--- a/phpBB/phpbb/controller/helper.php
+++ b/phpBB/phpbb/controller/helper.php
@@ -52,15 +52,15 @@ class helper
protected $routing_helper;
/**
- * Constructor
- *
- * @param \phpbb\template\template $template Template object
- * @param \phpbb\user $user User object
- * @param \phpbb\config\config $config Config object
- * @param \phpbb\symfony_request $symfony_request Symfony Request object
- * @param \phpbb\request\request_interface $request phpBB request object
- * @param \phpbb\routing\helper $routing_helper Helper to generate the routes
- */
+ * Constructor
+ *
+ * @param \phpbb\template\template $template Template object
+ * @param \phpbb\user $user User object
+ * @param \phpbb\config\config $config Config object
+ * @param \phpbb\symfony_request $symfony_request Symfony Request object
+ * @param \phpbb\request\request_interface $request phpBB request object
+ * @param \phpbb\routing\helper $routing_helper Helper to generate the routes
+ */
public function __construct(\phpbb\template\template $template, \phpbb\user $user, \phpbb\config\config $config, \phpbb\symfony_request $symfony_request, \phpbb\request\request_interface $request, \phpbb\routing\helper $routing_helper)
{
$this->template = $template;