mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11768] Removed unused annotations
PHPBB3-11768
This commit is contained in:
parent
5fe74cd394
commit
baadc2a6e5
9 changed files with 0 additions and 26 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,10 +13,6 @@
|
||||||
|
|
||||||
namespace phpbb\textformatter;
|
namespace phpbb\textformatter;
|
||||||
|
|
||||||
/**
|
|
||||||
* text_formatter.parser service
|
|
||||||
* @package phpBB3
|
|
||||||
*/
|
|
||||||
abstract class parser
|
abstract class parser
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -13,10 +13,6 @@
|
||||||
|
|
||||||
namespace phpbb\textformatter;
|
namespace phpbb\textformatter;
|
||||||
|
|
||||||
/**
|
|
||||||
* text_formatter.renderer service
|
|
||||||
* @package phpBB3
|
|
||||||
*/
|
|
||||||
abstract class renderer
|
abstract class renderer
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue