delete() public method

Delete a comment for a pin with current id.
public delete ( string $pinId, integer $commentId ) : boolean
$pinId string
$commentId integer
return boolean
 /** @test */
 public function it_should_delete_comments_for_pin()
 {
     $this->apiShouldReturnSuccess()->assertTrue($this->provider->delete(1111, 1111));
     $this->apiShouldReturnError()->assertFalse($this->provider->delete(1111, 1111));
 }