Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.161.182
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
doctrine /
dbal /
src /
Logging /
Delete
Unzip
Name
Size
Permission
Date
Action
Connection.php
1.79
KB
-rw-rw-r--
2022-08-21 14:21
DebugStack.php
1.41
KB
-rw-rw-r--
2022-08-21 14:21
Driver.php
1.24
KB
-rw-rw-r--
2022-08-21 14:21
LoggerChain.php
995
B
-rw-rw-r--
2022-08-21 14:21
Middleware.php
531
B
-rw-rw-r--
2022-08-21 14:21
SQLLogger.php
949
B
-rw-rw-r--
2022-08-21 14:21
Statement.php
2.91
KB
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php namespace Doctrine\DBAL\Logging; use Doctrine\Deprecations\Deprecation; use function microtime; /** * Includes executed SQLs in a Debug Stack. * * @deprecated */ class DebugStack implements SQLLogger { /** * Executed SQL queries. * * @var array<int, array<string, mixed>> */ public $queries = []; /** * If Debug Stack is enabled (log queries) or not. * * @var bool */ public $enabled = true; /** @var float|null */ public $start = null; /** @var int */ public $currentQuery = 0; public function __construct() { Deprecation::trigger( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/4967', 'DebugStack is deprecated.' ); } /** * {@inheritdoc} */ public function startQuery($sql, ?array $params = null, ?array $types = null) { if (! $this->enabled) { return; } $this->start = microtime(true); $this->queries[++$this->currentQuery] = [ 'sql' => $sql, 'params' => $params, 'types' => $types, 'executionMS' => 0, ]; } /** * {@inheritdoc} */ public function stopQuery() { if (! $this->enabled) { return; } $this->queries[$this->currentQuery]['executionMS'] = microtime(true) - $this->start; } }