isBanned() public method

Checks if current user is banned
public isBanned ( ) : boolean
return boolean
 /** @test */
 public function it_should_return_ban_info_from_profile()
 {
     $profile = ['is_write_banned' => true];
     $this->apiShouldReturnData($profile)->assertEquals($profile['is_write_banned'], $this->provider->isBanned());
 }