for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Security;
use Symfony\Component\Security\Core\Exception\AccountStatusException;
/**
* @codeCoverageIgnore
*/
class AccountDisabledException extends AccountStatusException {
public function getMessageKey(): string {
return 'account_disabled';
}