Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
doctrine
/
dbal
/
src
/
Driver
/
Mysqli
/
Initializer
Location:
/home/zoteqbgb/public_html/vendor/doctrine/dbal/src/Driver/Mysqli/Initializer
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: Secure.php
<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver\Mysqli\Initializer; use Doctrine\DBAL\Driver\Mysqli\Initializer; use mysqli; use SensitiveParameter; final class Secure implements Initializer { private string $key; private string $cert; private string $ca; private string $capath; private string $cipher; public function __construct( #[SensitiveParameter] string $key, string $cert, string $ca, string $capath, string $cipher ) { $this->key = $key; $this->cert = $cert; $this->ca = $ca; $this->capath = $capath; $this->cipher = $cipher; } public function initialize(mysqli $connection): void { $connection->ssl_set($this->key, $this->cert, $this->ca, $this->capath, $this->cipher); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Charset.php
793 bytes
0644
2025-01-16 13:28
âï¸
ðï¸
Rename
Options.php
760 bytes
0644
2025-01-16 13:28
âï¸
ðï¸
Rename
Secure.php
854 bytes
0644
2025-01-16 13:28
âï¸
ðï¸
Rename
Chang
Apply