Merge pull request #2490 from BartoszSiejka/interface

Add setters and getters ...
This commit is contained in:
Paweł Jędrzejewski 2015-02-18 18:42:09 +01:00
commit 1d96fb7ae2
2 changed files with 28 additions and 0 deletions

View file

@ -114,4 +114,18 @@ interface ArchetypeInterface extends TimestampableInterface, ArchetypeTranslatio
* @return null|ArchetypeInterface
*/
public function getParent();
/**
* Get code.
*
* @return string
*/
public function getCode();
/**
* Sets code.
*
* @param string $code
*/
public function setCode($code);
}

View file

@ -48,4 +48,18 @@ interface TaxonTranslationInterface extends SlugAwareInterface
* @param string $permalink
*/
public function setPermalink($permalink);
/**
* Get description.
*
* @return string
*/
public function getDescription();
/**
* Set description.
*
* @param string $description
*/
public function setDescription($description);
}