Example #1
0
 /**
  * Add a team member to AsgardCms
  * @param string $githubUsername
  * @return \Guzzle\Http\EntityBodyInterface|mixed|string
  */
 public function addTeamMember($githubUsername)
 {
     try {
         return $this->client->organization()->teams()->addMember('1132536', $githubUsername);
     } catch (\Exception $e) {
         dd($e->getMessage());
     }
 }