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.218.99.99
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\DBAL\Types\Type; /** * Interface for SQL loggers. * * @deprecated Use {@see \Doctrine\DBAL\Logging\Middleware} or implement * {@see \Doctrine\DBAL\Driver\Middleware} instead. */ interface SQLLogger { /** * Logs a SQL statement somewhere. * * @param string $sql SQL statement * @param list<mixed>|array<string, mixed>|null $params Statement parameters * @param array<int, Type|int|string|null>|array<string, Type|int|string|null>|null $types Parameter types * * @return void */ public function startQuery($sql, ?array $params = null, ?array $types = null); /** * Marks the last started query as stopped. This can be used for timing of queries. * * @return void */ public function stopQuery(); }