File tree Expand file tree Collapse file tree
system/Honeypot/Exceptions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616
1717class HoneypotException extends ConfigException implements ExceptionInterface
1818{
19- public static function forNoTemplate (): HoneypotException
19+ public static function forNoTemplate (): self
2020 {
2121 return new static (lang ('Honeypot.noTemplate ' ));
2222 }
2323
24- public static function forNoNameField (): HoneypotException
24+ public static function forNoNameField (): self
2525 {
2626 return new static (lang ('Honeypot.noNameField ' ));
2727 }
2828
29- public static function forNoHiddenValue (): HoneypotException
29+ public static function forNoHiddenValue (): self
3030 {
3131 return new static (lang ('Honeypot.noHiddenValue ' ));
3232 }
3333
34- public static function isBot (): HoneypotException
34+ public static function isBot (): self
3535 {
3636 return new static (lang ('Honeypot.theClientIsABot ' ));
3737 }
You can’t perform that action at this time.
0 commit comments