chore: linter

This commit is contained in:
Christy Jacob 2024-10-22 19:49:10 +00:00
parent a56293e018
commit ae4edf119f
2 changed files with 14 additions and 14 deletions

24
composer.lock generated
View file

@ -2124,16 +2124,16 @@
}, },
{ {
"name": "utopia-php/messaging", "name": "utopia-php/messaging",
"version": "0.12.1", "version": "0.12.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/utopia-php/messaging.git", "url": "https://github.com/utopia-php/messaging.git",
"reference": "b9dfafb5efc1d12cbee01d03dc98853ef026e35b" "reference": "f6790fba1fcee12163d51c65d2c226a7856295d9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/utopia-php/messaging/zipball/b9dfafb5efc1d12cbee01d03dc98853ef026e35b", "url": "https://api.github.com/repos/utopia-php/messaging/zipball/f6790fba1fcee12163d51c65d2c226a7856295d9",
"reference": "b9dfafb5efc1d12cbee01d03dc98853ef026e35b", "reference": "f6790fba1fcee12163d51c65d2c226a7856295d9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2169,9 +2169,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/utopia-php/messaging/issues", "issues": "https://github.com/utopia-php/messaging/issues",
"source": "https://github.com/utopia-php/messaging/tree/0.12.1" "source": "https://github.com/utopia-php/messaging/tree/0.12.2"
}, },
"time": "2024-10-09T08:17:07+00:00" "time": "2024-10-22T01:02:20+00:00"
}, },
{ {
"name": "utopia-php/migration", "name": "utopia-php/migration",
@ -2341,16 +2341,16 @@
}, },
{ {
"name": "utopia-php/platform", "name": "utopia-php/platform",
"version": "0.7.0", "version": "0.7.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/utopia-php/platform.git", "url": "https://github.com/utopia-php/platform.git",
"reference": "beeea0f2c9bce14a6869fc5c87a1047cdecb5c52" "reference": "3433a0f1a54988f2a59c735f507745cb2c24638a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/utopia-php/platform/zipball/beeea0f2c9bce14a6869fc5c87a1047cdecb5c52", "url": "https://api.github.com/repos/utopia-php/platform/zipball/3433a0f1a54988f2a59c735f507745cb2c24638a",
"reference": "beeea0f2c9bce14a6869fc5c87a1047cdecb5c52", "reference": "3433a0f1a54988f2a59c735f507745cb2c24638a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2385,9 +2385,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/utopia-php/platform/issues", "issues": "https://github.com/utopia-php/platform/issues",
"source": "https://github.com/utopia-php/platform/tree/0.7.0" "source": "https://github.com/utopia-php/platform/tree/0.7.1"
}, },
"time": "2024-05-08T17:00:55+00:00" "time": "2024-10-22T10:27:49+00:00"
}, },
{ {
"name": "utopia-php/pools", "name": "utopia-php/pools",

View file

@ -160,14 +160,14 @@ class Certificates extends Action
try { try {
// Generate certificate files using Let's Encrypt // Generate certificate files using Let's Encrypt
$letsEncryptData = $this->issueCertificate($folder, $domain->get(), $email); $letsEncryptData = $this->issueCertificate($folder, $domain->get(), $email);
// Give certificates to Traefik // Give certificates to Traefik
$this->applyCertificateFiles($folder, $domain->get(), $letsEncryptData); $this->applyCertificateFiles($folder, $domain->get(), $letsEncryptData);
} catch (\Throwable $th) { } catch (\Throwable $th) {
Console::error('Failed to generate Lets Encrypt certificate'); Console::error('Failed to generate Lets Encrypt certificate');
} }
// Command succeeded, store all data into document // Command succeeded, store all data into document
$logs = 'Certificate successfully generated.'; $logs = 'Certificate successfully generated.';
$certificate->setAttribute('logs', \mb_strcut($logs, 0, 1000000));// Limit to 1MB $certificate->setAttribute('logs', \mb_strcut($logs, 0, 1000000));// Limit to 1MB