aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter
diff options
context:
space:
mode:
authors9e <s9e.dev@gmail.com>2015-01-08 11:28:23 +0100
committerJoshyPHP <s9e.dev@gmail.com>2015-04-02 19:16:01 +0200
commitcf39b02891d5ab021e4abc0932e1bb964cbd680c (patch)
treeab235e6269561dbe69d0f35a311add4ede107d16 /phpBB/phpbb/textformatter
parentca9f5344097eff5efef4ab6392109c9df737cf25 (diff)
downloadforums-cf39b02891d5ab021e4abc0932e1bb964cbd680c.tar
forums-cf39b02891d5ab021e4abc0932e1bb964cbd680c.tar.gz
forums-cf39b02891d5ab021e4abc0932e1bb964cbd680c.tar.bz2
forums-cf39b02891d5ab021e4abc0932e1bb964cbd680c.tar.xz
forums-cf39b02891d5ab021e4abc0932e1bb964cbd680c.zip
[ticket/11768] Updated annotations to pass sniff
PHPBB3-11768
Diffstat (limited to 'phpBB/phpbb/textformatter')
-rw-r--r--phpBB/phpbb/textformatter/s9e/factory.php2
-rw-r--r--phpBB/phpbb/textformatter/s9e/parser.php10
-rw-r--r--phpBB/phpbb/textformatter/s9e/renderer.php6
3 files changed, 9 insertions, 9 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/factory.php b/phpBB/phpbb/textformatter/s9e/factory.php
index 8d61f2caac..39697f6d4b 100644
--- a/phpBB/phpbb/textformatter/s9e/factory.php
+++ b/phpBB/phpbb/textformatter/s9e/factory.php
@@ -145,7 +145,7 @@ class factory implements \phpbb\textformatter\cache
/**
* Generate and return a new configured instance of s9e\TextFormatter\Configurator
*
- * @return s9e\TextFormatter\Configurator
+ * @return Configurator
*/
public function get_configurator()
{
diff --git a/phpBB/phpbb/textformatter/s9e/parser.php b/phpBB/phpbb/textformatter/s9e/parser.php
index 10e33f47e6..58cef8fa9e 100644
--- a/phpBB/phpbb/textformatter/s9e/parser.php
+++ b/phpBB/phpbb/textformatter/s9e/parser.php
@@ -39,7 +39,7 @@ class parser extends \phpbb\textformatter\parser
* @param phpbb\cache\driver_interface $cache
* @param string $key Cache key
* @param phpbb\user $user
- * @param Symfony\Component\DependencyInjection\ContainerInterface $container
+ * @param ContainerInterface $container
* @return null
*/
public function __construct(\phpbb\cache\driver\driver_interface $cache, $key, \phpbb\user $user, ContainerInterface $container)
@@ -218,7 +218,7 @@ class parser extends \phpbb\textformatter\parser
*
* @param string $height
* @param integer $max_height
- * @param s9e\TextFormatter\Parser\Logger $logger
+ * @param Logger $logger
* @return mixed Original value if valid, FALSE otherwise
*/
static public function filter_flash_height($height, $max_height, Logger $logger)
@@ -240,7 +240,7 @@ class parser extends \phpbb\textformatter\parser
*
* @param string $width
* @param integer $max_width
- * @param s9e\TextFormatter\Parser\Logger $logger
+ * @param Logger $logger
* @return mixed Original value if valid, FALSE otherwise
*/
static public function filter_flash_width($width, $max_width, Logger $logger)
@@ -262,7 +262,7 @@ class parser extends \phpbb\textformatter\parser
*
* @param string $size Original size
* @param integer $max_size Maximum allowed size
- * @param s9e\TextFormatter\Parser\Logger $logger
+ * @param Logger $logger
* @return mixed Original value if valid, FALSE otherwise
*/
static public function filter_font_size($size, $max_size, Logger $logger)
@@ -289,7 +289,7 @@ class parser extends \phpbb\textformatter\parser
*
* @param string $url Original URL
* @param array $url_config Config used by the URL filter
- * @param s9e\TextFormatter\Parser\Logger $logger
+ * @param Logger $logger
* @param integer $max_height Maximum height allowed
* @param integer $max_width Maximum width allowed
* @return string|bool Original value if valid, FALSE otherwise
diff --git a/phpBB/phpbb/textformatter/s9e/renderer.php b/phpBB/phpbb/textformatter/s9e/renderer.php
index 2c8412f961..c724be7cfe 100644
--- a/phpBB/phpbb/textformatter/s9e/renderer.php
+++ b/phpBB/phpbb/textformatter/s9e/renderer.php
@@ -50,9 +50,9 @@ class renderer extends \phpbb\textformatter\renderer
* Constructor
*
* @param phpbb\cache\driver\driver_interface $cache
- * @param string $cache_dir Path to the cache dir
- * @param string $key Cache key
- * @param Symfony\Component\DependencyInjection\ContainerInterface $container
+ * @param string $cache_dir Path to the cache dir
+ * @param string $key Cache key
+ * @param ContainerInterface $container
* @return null
*/
public function __construct(\phpbb\cache\driver\driver_interface $cache, $cache_dir, $key, ContainerInterface $container)