diff options
| author | Tristan Darricau <github@nicofuma.fr> | 2015-01-14 12:34:28 +0100 |
|---|---|---|
| committer | Tristan Darricau <github@nicofuma.fr> | 2015-01-14 12:34:28 +0100 |
| commit | 98937a7a18dc605c6d3bb8a3f20f124ec71e058a (patch) | |
| tree | 188b7b5c0741a7fd5ea54d322b9f394a21c1fe28 /phpBB/install/install_update.php | |
| parent | 853733a0eb04f917fe3195ed9f36cfcf643deffd (diff) | |
| parent | b5544b2f471ce4c93b08d19919ab062725545ce8 (diff) | |
| download | forums-98937a7a18dc605c6d3bb8a3f20f124ec71e058a.tar forums-98937a7a18dc605c6d3bb8a3f20f124ec71e058a.tar.gz forums-98937a7a18dc605c6d3bb8a3f20f124ec71e058a.tar.bz2 forums-98937a7a18dc605c6d3bb8a3f20f124ec71e058a.tar.xz forums-98937a7a18dc605c6d3bb8a3f20f124ec71e058a.zip | |
Merge pull request #3289 from MGaetan89/ticket/13450
[ticket/13450] Type-hint return value of $phpbb_container->get()
* MGaetan89/ticket/13450:
[ticket/13450] Type-hint return value of $phpbb_container->get()
Diffstat (limited to 'phpBB/install/install_update.php')
| -rw-r--r-- | phpBB/install/install_update.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index bd8d3751e1..8f233b7efe 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -84,6 +84,7 @@ class install_update extends module $phpbb_container = $phpbb_container_builder->get_container(); // Writes into global $cache + /* @var $cache \phpbb\cache\service */ $cache = $phpbb_container->get('cache'); $this->tpl_name = 'install_update'; @@ -161,6 +162,7 @@ class install_update extends module )); // Get current and latest version + /* @var $version_helper \phpbb\version_helper */ $version_helper = $phpbb_container->get('version_helper'); try { @@ -519,6 +521,8 @@ class install_update extends module if ($all_up_to_date) { global $phpbb_container; + + /* @var $phpbb_log \phpbb\log\log_interface */ $phpbb_log = $phpbb_container->get('log'); // Add database update to log |
