diff options
Diffstat (limited to 'generated-classes/Product.php')
| -rw-r--r-- | generated-classes/Product.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/generated-classes/Product.php b/generated-classes/Product.php index afa6b7d..5c23acc 100644 --- a/generated-classes/Product.php +++ b/generated-classes/Product.php @@ -14,5 +14,19 @@ use Base\Product as BaseProduct; */ class Product extends BaseProduct { - + /* (non-PHPdoc) + * @see \Base\Product::getName() + */ + public function getName() + { + return htmlentities(parent::getName()); + } + + /* (non-PHPdoc) + * @see \Base\Product::getDescription() + */ + public function getDescription() + { + return htmlentities(parent::getDescription()); + } } |
