for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheCodingMachine\GraphQL\Controllers\Security;
/**
* A fake authentication service that always returns that the current user is NOT authenticated.
*/
class VoidAuthenticationService implements AuthenticationServiceInterface
{
* Returns true if the "current" user is logged
*
* @return bool
public function isLogged(): bool
return false;
}