diff --git a/phpBB/phpbb/composer/exception/managed_with_clean_error_exception.php b/phpBB/phpbb/composer/exception/managed_with_clean_error_exception.php index f7f6d163db..a9a7f9ddbc 100644 --- a/phpBB/phpbb/composer/exception/managed_with_clean_error_exception.php +++ b/phpBB/phpbb/composer/exception/managed_with_clean_error_exception.php @@ -18,18 +18,4 @@ namespace phpbb\composer\exception; */ class managed_with_clean_error_exception extends managed_with_error_exception { - /** - * Constructor - * - * @param string $prefix The language string prefix - * @param string $message The Exception message to throw (must be a language variable). - * @param array $parameters The parameters to use with the language var. - * @param \Exception|null $previous The previous runtime_exception used for the runtime_exception chaining. - * @param integer $code The Exception code. - */ - public function __construct($prefix, $message = '', array $parameters = [], \Exception $previous = null, $code = 0) - { - parent::__construct($prefix, $message, $parameters, $previous, $code); - } - } diff --git a/phpBB/phpbb/composer/exception/managed_with_enable_error_exception.php b/phpBB/phpbb/composer/exception/managed_with_enable_error_exception.php index eace036aed..88c76f5ba9 100644 --- a/phpBB/phpbb/composer/exception/managed_with_enable_error_exception.php +++ b/phpBB/phpbb/composer/exception/managed_with_enable_error_exception.php @@ -18,18 +18,4 @@ namespace phpbb\composer\exception; */ class managed_with_enable_error_exception extends managed_with_error_exception { - /** - * Constructor - * - * @param string $prefix The language string prefix - * @param string $message The Exception message to throw (must be a language variable). - * @param array $parameters The parameters to use with the language var. - * @param \Exception|null $previous The previous runtime_exception used for the runtime_exception chaining. - * @param integer $code The Exception code. - */ - public function __construct($prefix, $message = '', array $parameters = [], \Exception $previous = null, $code = 0) - { - parent::__construct($prefix, $message, $parameters, $previous, $code); - } - } diff --git a/phpBB/phpbb/composer/exception/managed_with_error_exception.php b/phpBB/phpbb/composer/exception/managed_with_error_exception.php index 0ebb1e1adf..a992265b07 100644 --- a/phpBB/phpbb/composer/exception/managed_with_error_exception.php +++ b/phpBB/phpbb/composer/exception/managed_with_error_exception.php @@ -18,17 +18,4 @@ namespace phpbb\composer\exception; */ class managed_with_error_exception extends runtime_exception { - /** - * Constructor - * - * @param string $prefix The language string prefix - * @param string $message The Exception message to throw (must be a language variable). - * @param array $parameters The parameters to use with the language var. - * @param \Exception|null $previous The previous runtime_exception used for the runtime_exception chaining. - * @param integer $code The Exception code. - */ - public function __construct($prefix, $message = '', array $parameters = [], \Exception $previous = null, $code = 0) - { - parent::__construct($prefix, $message, $parameters, $previous, $code); - } } diff --git a/phpBB/phpbb/console/application.php b/phpBB/phpbb/console/application.php index 6726904e8f..50443cd646 100644 --- a/phpBB/phpbb/console/application.php +++ b/phpBB/phpbb/console/application.php @@ -14,10 +14,7 @@ namespace phpbb\console; use Symfony\Component\Console\Input\InputDefinition; -use Symfony\Component\Console\Shell; -use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; -use Symfony\Component\Console\Output\OutputInterface; class application extends \Symfony\Component\Console\Application { diff --git a/phpBB/phpbb/storage/storage.php b/phpBB/phpbb/storage/storage.php index 671e9da1a3..8e4620ab23 100644 --- a/phpBB/phpbb/storage/storage.php +++ b/phpBB/phpbb/storage/storage.php @@ -403,7 +403,7 @@ class storage * * @param string $path The file * - * @throws \phpbb\storage\exception\exception When the adapter doesnt implement the method + * @throws exception When the adapter doesn't implement the method * When the file doesn't exist * * @return \phpbb\storage\file_info Returns file_info object