aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-09-07 12:19:48 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-09-09 08:29:11 +0200
commit7a92ad596c56c25728fd6a22c3a817504e8cb347 (patch)
tree6451d12d010b6f1f1a6e951999508f55dcad075e /phpBB
parente5bffbf40ff59614cea1b5f3f662d91cf8e63323 (diff)
downloadforums-7a92ad596c56c25728fd6a22c3a817504e8cb347.tar
forums-7a92ad596c56c25728fd6a22c3a817504e8cb347.tar.gz
forums-7a92ad596c56c25728fd6a22c3a817504e8cb347.tar.bz2
forums-7a92ad596c56c25728fd6a22c3a817504e8cb347.tar.xz
forums-7a92ad596c56c25728fd6a22c3a817504e8cb347.zip
[ticket/13904] Minor coding style fixes
PHPBB3-13904
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/files/filespec.php1
-rw-r--r--phpBB/phpbb/files/types/form.php3
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/files/filespec.php b/phpBB/phpbb/files/filespec.php
index 6ce54a4789..83007f11c0 100644
--- a/phpBB/phpbb/files/filespec.php
+++ b/phpBB/phpbb/files/filespec.php
@@ -96,6 +96,7 @@ class filespec
* @param \phpbb\filesystem\filesystem_interface $phpbb_filesystem Filesystem
* @param language $language Language
* @param \bantu\IniGetWrapper\IniGetWrapper $php_ini ini_get() wrapper
+ * @param \fastImageSize\fastImageSize $imagesize Imagesize class
* @param string $phpbb_root_path phpBB root path
* @param \phpbb\mimetype\guesser $mimetype_guesser Mime type guesser
* @param \phpbb\plupload\plupload $plupload Plupload
diff --git a/phpBB/phpbb/files/types/form.php b/phpBB/phpbb/files/types/form.php
index 1662e0e920..4cf340ee7d 100644
--- a/phpBB/phpbb/files/types/form.php
+++ b/phpBB/phpbb/files/types/form.php
@@ -16,7 +16,6 @@ namespace phpbb\files\types;
use \bantu\IniGetWrapper\IniGetWrapper;
use \phpbb\files\factory;
use \phpbb\files\filespec;
-use \phpbb\files\upload;
use \phpbb\language\language;
use \phpbb\plupload\plupload;
use \phpbb\request\request_interface;
@@ -38,7 +37,7 @@ class form extends base
/** @var request_interface */
protected $request;
- /** @var upload */
+ /** @var \phpbb\files\upload */
protected $upload;
/**