edit() public method

Edit pin by ID. You can move pin to a new board by setting this board id.
public edit ( integer $pindId, string $description = '', string $link = '', integer | null $boardId = null ) : boolean
$pindId integer
$description string
$link string
$boardId integer | null
return boolean
 /** @test */
 public function it_should_edit_pins()
 {
     $this->apiShouldReturnSuccess()->assertTrue($this->provider->edit(1, 'new', 'changed'));
     $this->apiShouldReturnError()->assertFalse($this->provider->edit(1, 'new', 'changed'));
 }