1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/13740] Clean up docblocks

PHPBB3-13740
This commit is contained in:
MateBartus
2015-06-02 20:41:26 +02:00
committed by Mate Bartus
parent 0b74e3b0de
commit 4df89d8848
10 changed files with 25 additions and 42 deletions

View File

@@ -62,6 +62,11 @@ class install
$this->installer = $installer;
}
/**
* Controller logic
*
* @return \Symfony\Component\HttpFoundation\Response|StreamedResponse
*/
public function handle()
{
// @todo check that phpBB is not already installed
@@ -82,8 +87,7 @@ class install
if ($this->request->is_ajax())
{
$installer = &$this->installer;
$installer = $this->installer;
$response = new StreamedResponse();
$response->setCallback(function() use ($installer) {
$installer->run();