getEvents() 공개 메소드

Lists User Events.
또한 보기: https://developers.intercom.io/reference#list-user-events
public getEvents ( array $options ) : mixed
$options array
리턴 mixed
예제 #1
0
 public function testEventsGet()
 {
     $stub = $this->getMockBuilder('Intercom\\IntercomClient')->disableOriginalConstructor()->getMock();
     $stub->method('get')->willReturn('foo');
     $users = new IntercomEvents($stub);
     $this->assertEquals('foo', $users->getEvents([]));
 }