Skip to content

Commit

Permalink
Merge pull request #42 from ombrodrigo/new-field-in-attribute-combina…
Browse files Browse the repository at this point in the history
…tion

Novo campo na classe AttributeCombination
  • Loading branch information
dilowagner authored Dec 17, 2019
2 parents 55b17a4 + f192750 commit 571dc0c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/Requests/Category/AttributeCombination.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@

class AttributeCombination
{
/**
* @var string
* @JMS\Type("string")
*/
private $id;

/**
* @var string
* @JMS\Type("string")
Expand All @@ -29,6 +35,24 @@ class AttributeCombination
*/
private $valueName;

/**
* @return string
*/
public function getId()
{
return $this->id;
}

/**
* @param string $name
* @return AttributeCombination
*/
public function setId($id)
{
$this->id = $id;
return $this;
}

/**
* @return string
*/
Expand Down

0 comments on commit 571dc0c

Please sign in to comment.