mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Class constant should be uppercase
This commit is contained in:
parent
16addeba10
commit
fb0cd95b0a
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ use Utopia\Queue\Message;
|
||||||
class Webhooks extends Action
|
class Webhooks extends Action
|
||||||
{
|
{
|
||||||
private array $errors = [];
|
private array $errors = [];
|
||||||
private const failedAttemptsCount = 10;
|
private const FAILEDATTEMPTSCOUNT = 10;
|
||||||
|
|
||||||
public static function getName(): string
|
public static function getName(): string
|
||||||
{
|
{
|
||||||
|
|
@ -128,7 +128,7 @@ class Webhooks extends Action
|
||||||
$webhook->setAttribute('logs', $lastErrorLogs);
|
$webhook->setAttribute('logs', $lastErrorLogs);
|
||||||
// $statusCode = curl_getinfo($ch, CURLINFO_RESPONSE_CODE);
|
// $statusCode = curl_getinfo($ch, CURLINFO_RESPONSE_CODE);
|
||||||
|
|
||||||
if ($errorCount >= self::failedAttemptsCount) {
|
if ($errorCount >= self::FAILEDATTEMPTSCOUNT) {
|
||||||
$webhook->setAttribute('enabled', false);
|
$webhook->setAttribute('enabled', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue