update() public method

- 'privacy' can be 'public' or 'secret'. 'public' by default. - 'category' is 'other' by default.
public update ( $boardId, $attributes ) : mixed
$boardId
$attributes
return mixed
 /** @test */
 public function it_should_update_board()
 {
     $attributes = ['category' => 'test', 'description' => 'test'];
     $boardId = 1;
     $this->apiShouldReturnSuccess()->assertTrue($this->provider->update($boardId, $attributes));
     $this->apiShouldReturnError()->assertFalse($this->provider->update($boardId, $attributes));
 }