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());
 }