for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chubbyphp\Security\Authentication\Exception;
final class UserNotFoundException extends AbstractLoginException
{
/**
* @param string $email
*
* @return UserNotFoundException
*/
public static function create(string $email): self
return new self(sprintf('User not found with email %s', $email));
}