Exemple #1
0
 /**
  * Get a specific story of the project
  * 
  * @param  string $id
  * @param  array  $params
  * @return Phase
  */
 public function getStory($id, $params = array())
 {
     if (!empty($id)) {
         return $this->service->getStory($this->id, $id, $params);
     }
 }
Exemple #2
0
 /**
  * Remove a comment
  * 
  * @param  integer $commentId
  * @return boolean 
  */
 public function removeComment($commentId)
 {
     return $this->service->removeComment($this->projectId, $this->id, $commentId);
 }
Exemple #3
0
 /**
  * Get stories
  *
  * @param  array $params
  * @return \Zend\Service\AgileZen\Container
  */
 public function getStories($params = array())
 {
     return $this->service->getStoriesPhase($this->projectId, $this->id, $params);
 }