getTags() публичный Метод

Lists Tags.
См. также: https://developers.intercom.io/reference#list-tags-for-an-app
public getTags ( array $options = [] ) : mixed
$options array
Результат mixed
Пример #1
0
 public function testTagsList()
 {
     $stub = $this->getMockBuilder('Intercom\\IntercomClient')->disableOriginalConstructor()->getMock();
     $stub->method('get')->willReturn('foo');
     $tags = new IntercomTags($stub);
     $this->assertEquals('foo', $tags->getTags());
 }