Example #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testGetRoles()
 {
     $this->assertInternalType('array', $this->object->getRoles(true));
 }
Example #2
0
 /**
  * Returns a list of roles on this ticket
  *
  * @return array key/value list of roles/participants
  */
 public function getRoles()
 {
     return $this->getWithCaching('roles', function () {
         return $this->timeline->getRoles();
     });
 }