getCounts() 공개 메소드

Returns list of Counts.
또한 보기: https://developers.intercom.io/reference#getting-counts
public getCounts ( array $options = [] ) : mixed
$options array
리턴 mixed
예제 #1
0
 public function testCountsList()
 {
     $stub = $this->getMockBuilder('Intercom\\IntercomClient')->disableOriginalConstructor()->getMock();
     $stub->method('get')->willReturn('foo');
     $counts = new IntercomCounts($stub);
     $this->assertEquals('foo', $counts->getCounts([]));
 }