create() 공개 메소드

Creates Note.
또한 보기: https://developers.intercom.io/reference#create-a-note
public create ( array $options ) : mixed
$options array
리턴 mixed
예제 #1
0
 public function testNoteCreate()
 {
     $stub = $this->getMockBuilder('Intercom\\IntercomClient')->disableOriginalConstructor()->getMock();
     $stub->method('post')->willReturn('foo');
     $notes = new IntercomNotes($stub);
     $this->assertEquals('foo', $notes->create([]));
 }