mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Add const usage
This commit is contained in:
parent
ede0427ba5
commit
4846a2e1dd
1 changed files with 2 additions and 1 deletions
|
|
@ -12,6 +12,7 @@ use Appwrite\Extend\Exception;
|
||||||
use Utopia\Config\Config;
|
use Utopia\Config\Config;
|
||||||
use Utopia\Domains\Domain;
|
use Utopia\Domains\Domain;
|
||||||
use Appwrite\Auth\Auth;
|
use Appwrite\Auth\Auth;
|
||||||
|
use Appwrite\Event\Event;
|
||||||
use Appwrite\Network\Validator\Origin;
|
use Appwrite\Network\Validator\Origin;
|
||||||
use Appwrite\Utopia\Response\Filters\V11 as ResponseV11;
|
use Appwrite\Utopia\Response\Filters\V11 as ResponseV11;
|
||||||
use Appwrite\Utopia\Response\Filters\V12 as ResponseV12;
|
use Appwrite\Utopia\Response\Filters\V12 as ResponseV12;
|
||||||
|
|
@ -101,7 +102,7 @@ App::init(function ($utopia, $request, $response, $console, $project, $dbForCons
|
||||||
|
|
||||||
Console::info('Issuing a TLS certificate for the main domain (' . $domain->get() . ') in a few seconds...');
|
Console::info('Issuing a TLS certificate for the main domain (' . $domain->get() . ') in a few seconds...');
|
||||||
|
|
||||||
Resque::enqueue('v1-certificates', 'CertificatesV1', [
|
Resque::enqueue(Event::CERTIFICATES_QUEUE_NAME, Event::CERTIFICATES_CLASS_NAME, [
|
||||||
'document' => $domainDocument,
|
'document' => $domainDocument,
|
||||||
'domain' => $domain->get(),
|
'domain' => $domain->get(),
|
||||||
'validateTarget' => false,
|
'validateTarget' => false,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue