[ticket/11768] Removed unused annotations

PHPBB3-11768
This commit is contained in:
JoshyPHP 2015-03-03 00:38:35 +01:00
parent 5fe74cd394
commit baadc2a6e5
9 changed files with 0 additions and 26 deletions

View file

@ -14,14 +14,8 @@
namespace phpbb\textformatter; namespace phpbb\textformatter;
/** /**
* text_formatter.cache service
*
* Currently only used to signal that something that could effect the rendering has changed. * Currently only used to signal that something that could effect the rendering has changed.
* BBCodes, smilies, censored words, templates, etc... * BBCodes, smilies, censored words, templates, etc...
*
* @todo functionality should be moved to data_access
*
* @package phpBB3
*/ */
interface cache interface cache
{ {

View file

@ -14,14 +14,10 @@
namespace phpbb\textformatter; namespace phpbb\textformatter;
/** /**
* text_formatter.data_access service
*
* Data access layer that fetchs BBCodes, smilies and censored words from the database. * Data access layer that fetchs BBCodes, smilies and censored words from the database.
* To be extended to include insert/update/delete operations. * To be extended to include insert/update/delete operations.
* *
* Also used to get templates. * Also used to get templates.
*
* @package phpBB3
*/ */
class data_access class data_access
{ {

View file

@ -13,10 +13,6 @@
namespace phpbb\textformatter; namespace phpbb\textformatter;
/**
* text_formatter.parser service
* @package phpBB3
*/
abstract class parser abstract class parser
{ {
/** /**

View file

@ -13,10 +13,6 @@
namespace phpbb\textformatter; namespace phpbb\textformatter;
/**
* text_formatter.renderer service
* @package phpBB3
*/
abstract class renderer abstract class renderer
{ {
/** /**

View file

@ -18,7 +18,6 @@ use s9e\TextFormatter\Configurator\Items\AttributeFilters\Regexp as RegexpFilter
/** /**
* Creates s9e\TextFormatter objects * Creates s9e\TextFormatter objects
* @package phpBB3
*/ */
class factory implements \phpbb\textformatter\cache class factory implements \phpbb\textformatter\cache
{ {

View file

@ -18,7 +18,6 @@ use s9e\TextFormatter\Parser\Logger;
/** /**
* s9e\TextFormatter\Parser adapter * s9e\TextFormatter\Parser adapter
* @package phpBB3
*/ */
class parser extends \phpbb\textformatter\parser class parser extends \phpbb\textformatter\parser
{ {

View file

@ -15,7 +15,6 @@ namespace phpbb\textformatter\s9e;
/** /**
* s9e\TextFormatter\Renderer adapter * s9e\TextFormatter\Renderer adapter
* @package phpBB3
*/ */
class renderer extends \phpbb\textformatter\renderer class renderer extends \phpbb\textformatter\renderer
{ {

View file

@ -15,7 +15,6 @@ namespace phpbb\textformatter\s9e;
/** /**
* Text manipulation utilities * Text manipulation utilities
* @package phpBB3
*/ */
class utils extends \phpbb\textformatter\utils class utils extends \phpbb\textformatter\utils
{ {

View file

@ -14,11 +14,7 @@
namespace phpbb\textformatter; namespace phpbb\textformatter;
/** /**
* text_formatter.utils service
*
* Used to manipulate a parsed text * Used to manipulate a parsed text
*
* @package phpBB3
*/ */
abstract class utils abstract class utils
{ {