getTags() public method

Lists Tags.
See also: https://developers.intercom.io/reference#list-tags-for-an-app
public getTags ( array $options = [] ) : mixed
$options array
return mixed
 public function testTagsList()
 {
     $stub = $this->getMockBuilder('Intercom\\IntercomClient')->disableOriginalConstructor()->getMock();
     $stub->method('get')->willReturn('foo');
     $tags = new IntercomTags($stub);
     $this->assertEquals('foo', $tags->getTags());
 }