Added comments on classes to fix travis errors

This commit is contained in:
Marcos García de La Fuente 2016-07-25 10:37:39 +02:00
parent b1c552ee9d
commit 8ceb494569
4 changed files with 16 additions and 0 deletions

View File

@ -16,6 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Class ProductAttribute
* Used to represent a product attribute
*/
class ProductAttribute
{
/**

View File

@ -16,6 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Class ProductAttributeValue
* Used to represent a product attribute value
*/
class ProductAttributeValue
{
/**

View File

@ -16,6 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Class ProductCombination
* Used to represent a product combination
*/
class ProductCombination
{
/**

View File

@ -16,6 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Class ProductCombination2ValuePair
* Used to represent the relation between a product combination, a product attribute and a product attribute value
*/
class ProductCombination2ValuePair
{
/**