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\Picture as BasePicture;
* Class Picture
*
* Picture is a concrete image for HTML rendering
*
* @package DesignPatterns\AbstractFactory\Html
*/
class Picture extends BasePicture
{
@@ -24,4 +22,4 @@ class Picture extends BasePicture
return sprintf('<img src="%s" title="$s"/>', $this->_path, $this->_name);
}
}
}

View File

@@ -8,8 +8,6 @@ use DesignPatterns\AbstractFactory\Text as BaseText;
* Class Text
*
* Text is a concrete text for HTML rendering
*
* @package DesignPatterns\AbstractFactory\Html
*/
class Text extends BaseText
{
@@ -24,4 +22,4 @@ class Text extends BaseText
return '<div>' . htmlspecialchars($this->_text) . '</div>';
}
}
}