Auth0\Tests\UsersTest::getCreateBody PHP Method

getCreateBody() protected method

protected getCreateBody ( )
    protected function getCreateBody()
    {
        $this->email = 'test-create-user' . rand();
        echo "\n-- Using user email {$this->email} \n";
        return ['connection' => 'Username-Password-Authentication', 'email' => $this->email . '@test.com', 'password' => '123456', 'email_verified' => true];
    }