isPrimaryOwner() public method

Checks if the user is the team's primary owner.
public isPrimaryOwner ( ) : boolean
return boolean True if the user is the primary team owner.
Ejemplo n.º 1
0
 public function testIsPrimaryOwner()
 {
     $is = $this->faker->boolean;
     $user = new User($this->client, ['is_primary_owner' => $is]);
     $this->assertEquals($is, $user->isPrimaryOwner());
 }