aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-09-09 09:41:40 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-09-09 09:41:40 +0200
commit327e36a4d68ff9607967af52ef8f6a00c60343ff (patch)
tree84ad0be3d861f33636f1641c4593a067fea4ef5e /phpBB/phpbb/files
parent[ticket/13904] Update composer.lock (diff)
downloadphpbb-327e36a4d68ff9607967af52ef8f6a00c60343ff.tar.gz
phpbb-327e36a4d68ff9607967af52ef8f6a00c60343ff.tar.bz2
phpbb-327e36a4d68ff9607967af52ef8f6a00c60343ff.zip
[ticket/13904] Modify files for updated fast-image-size library
PHPBB3-13904
Diffstat (limited to 'phpBB/phpbb/files')
-rw-r--r--phpBB/phpbb/files/filespec.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/files/filespec.php b/phpBB/phpbb/files/filespec.php
index 83007f11c0..e171e7e68f 100644
--- a/phpBB/phpbb/files/filespec.php
+++ b/phpBB/phpbb/files/filespec.php
@@ -75,7 +75,7 @@ class filespec
/** @var \bantu\IniGetWrapper\IniGetWrapper ini_get() wrapper class */
protected $php_ini;
- /** @var \fastImageSize\fastImageSize */
+ /** @var \FastImageSize\FastImageSize */
protected $imagesize;
/** @var language Language class */
@@ -96,12 +96,12 @@ 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 \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
*/
- public function __construct(\phpbb\filesystem\filesystem_interface $phpbb_filesystem, language $language, \bantu\IniGetWrapper\IniGetWrapper $php_ini, \fastImageSize\fastImageSize $imagesize, $phpbb_root_path, \phpbb\mimetype\guesser $mimetype_guesser = null, \phpbb\plupload\plupload $plupload = null)
+ public function __construct(\phpbb\filesystem\filesystem_interface $phpbb_filesystem, language $language, \bantu\IniGetWrapper\IniGetWrapper $php_ini, \FastImageSize\FastImageSize $imagesize, $phpbb_root_path, \phpbb\mimetype\guesser $mimetype_guesser = null, \phpbb\plupload\plupload $plupload = null)
{
$this->filesystem = $phpbb_filesystem;
$this->language = $language;