for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Tharanga Kothalawala <[email protected]>
* @date 30-12-2018
*/
namespace TSK\SSO\AppUser;
* @package TSK\SSO\AppUser
*
* This represents a new user within the client application with their basic data.
class NewAppUser extends AppUser
{
* Returns true if this user is an existing user or newly created one.
* @return bool
public function isExistingUser()
return false;
}