1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/16955] Clean up composer classes and fix typos in exceptions

PHPBB3-16955
This commit is contained in:
Marc Alexander
2022-12-27 16:15:46 +01:00
parent 35228ffd62
commit 2aed7ff4e3
6 changed files with 36 additions and 23 deletions

View File

@@ -147,11 +147,11 @@ class installer
* @param array $packages Packages to install.
* Each entry may be a name or an array associating a version constraint to a name
* @param array $whitelist White-listed packages (packages that can be installed/updated/removed)
* @param IOInterface|null $io IO object used for the output
* @param io\io_interface|null $io IO object used for the output
*
* @throws runtime_exception
*/
protected function do_install(array $packages, $whitelist, IOInterface $io = null)
protected function do_install(array $packages, $whitelist, io\io_interface $io = null)
{
if (!$io)
{