aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/avatar
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-09-08 12:59:55 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-09-08 12:59:55 +0200
commit58286171f1035495c8c2a6fdffce9f3842601e66 (patch)
treeba59c8f1c906e183fc2b4878fe7ccfb09df73b83 /phpBB/phpbb/avatar
parent3ddee852fa0c1dd1518681679f52a4f9b427a9da (diff)
downloadforums-58286171f1035495c8c2a6fdffce9f3842601e66.tar
forums-58286171f1035495c8c2a6fdffce9f3842601e66.tar.gz
forums-58286171f1035495c8c2a6fdffce9f3842601e66.tar.bz2
forums-58286171f1035495c8c2a6fdffce9f3842601e66.tar.xz
forums-58286171f1035495c8c2a6fdffce9f3842601e66.zip
[ticket/14150] Update fast-image-size to newest version
PHPBB3-14150
Diffstat (limited to 'phpBB/phpbb/avatar')
-rw-r--r--phpBB/phpbb/avatar/driver/driver.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/avatar/driver/driver.php b/phpBB/phpbb/avatar/driver/driver.php
index b6fd380bda..c849533166 100644
--- a/phpBB/phpbb/avatar/driver/driver.php
+++ b/phpBB/phpbb/avatar/driver/driver.php
@@ -30,7 +30,7 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
*/
protected $config;
- /** @var \fastImageSize\fastImageSize */
+ /** @var \FastImageSize\FastImageSize */
protected $imagesize;
/**
@@ -76,13 +76,13 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
* Construct a driver object
*
* @param \phpbb\config\config $config phpBB configuration
- * @param \fastImageSize\fastImageSize $imagesize fastImageSize class
+ * @param \FastImageSize\FastImageSize $imagesize FastImageSize class
* @param string $phpbb_root_path Path to the phpBB root
* @param string $php_ext PHP file extension
* @param \phpbb\path_helper $path_helper phpBB path helper
* @param \phpbb\cache\driver\driver_interface $cache Cache driver
*/
- public function __construct(\phpbb\config\config $config, \fastImageSize\fastImageSize $imagesize, $phpbb_root_path, $php_ext, \phpbb\path_helper $path_helper, \phpbb\cache\driver\driver_interface $cache = null)
+ public function __construct(\phpbb\config\config $config, \FastImageSize\FastImageSize $imagesize, $phpbb_root_path, $php_ext, \phpbb\path_helper $path_helper, \phpbb\cache\driver\driver_interface $cache = null)
{
$this->config = $config;
$this->imagesize = $imagesize;