removed @package annotations

This commit is contained in:
Dominik Liebler
2013-09-03 14:42:15 +02:00
parent ba78aa87d1
commit fe3e846cbe
9 changed files with 6 additions and 24 deletions

View File

@@ -8,8 +8,6 @@ use DesignPatterns\AbstractFactory\Text as BaseText;
* Class Text
*
* Text is a text component with a JSON rendering
*
* @package DesignPatterns\AbstractFactory\Json
*/
class Text extends BaseText
{
@@ -24,4 +22,4 @@ class Text extends BaseText
return json_encode(array('content' => $this->_text));
}
}
}