Example #1
0
 /**
  * Play through the timeline and return which tags are currently applied,
  * taking into account those that have been added and those that have been
  * removed.
  *
  * @return array List of tags on the ticket
  */
 public function getTags()
 {
     return $this->getWithCaching('tags', function () {
         return $this->timeline->getTags();
     });
 }