X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar-X/vendor/symfony/var-dumper/Caster
home
/
gfecatvj
/
sites
/
realesbar-X
/
vendor
/
symfony
/
var-dumper
/
Caster
/
π
..
π
AmqpCaster.php
(6.52 KB)
π
ArgsStub.php
(2.24 KB)
π
Caster.php
(5.91 KB)
π
ClassStub.php
(3.75 KB)
π
ConstStub.php
(748 B)
π
CutArrayStub.php
(696 B)
π
CutStub.php
(1.88 KB)
π
DOMCaster.php
(9.83 KB)
π
DateCaster.php
(4.61 KB)
π
DoctrineCaster.php
(1.63 KB)
π
DsCaster.php
(1.55 KB)
π
DsPairStub.php
(613 B)
π
EnumStub.php
(637 B)
π
ExceptionCaster.php
(15.73 KB)
π
FrameStub.php
(740 B)
π
GmpCaster.php
(749 B)
π
ImagineCaster.php
(949 B)
π
ImgStub.php
(637 B)
π
IntlCaster.php
(8.72 KB)
π
LinkStub.php
(3.29 KB)
π
MemcachedCaster.php
(2.29 KB)
π
PdoCaster.php
(3.48 KB)
π
PgSqlCaster.php
(5.33 KB)
π
ProxyManagerCaster.php
(721 B)
π
RdKafkaCaster.php
(4.47 KB)
π
RedisCaster.php
(5.1 KB)
π
ReflectionCaster.php
(12.6 KB)
π
ResourceCaster.php
(3.11 KB)
π
SplCaster.php
(6.9 KB)
π
StubCaster.php
(2.09 KB)
π
SymfonyCaster.php
(1.76 KB)
π
TraceStub.php
(963 B)
π
UuidCaster.php
(668 B)
π
XmlReaderCaster.php
(2.94 KB)
π
XmlResourceCaster.php
(2.46 KB)
Editing: XmlReaderCaster.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\Component\VarDumper\Caster; use Symfony\Component\VarDumper\Cloner\Stub; /** * Casts XmlReader class to array representation. * * @author Baptiste ClaviΓ© <clavie.b@gmail.com> * * @final */ class XmlReaderCaster { private static $nodeTypes = [ \XMLReader::NONE => 'NONE', \XMLReader::ELEMENT => 'ELEMENT', \XMLReader::ATTRIBUTE => 'ATTRIBUTE', \XMLReader::TEXT => 'TEXT', \XMLReader::CDATA => 'CDATA', \XMLReader::ENTITY_REF => 'ENTITY_REF', \XMLReader::ENTITY => 'ENTITY', \XMLReader::PI => 'PI (Processing Instruction)', \XMLReader::COMMENT => 'COMMENT', \XMLReader::DOC => 'DOC', \XMLReader::DOC_TYPE => 'DOC_TYPE', \XMLReader::DOC_FRAGMENT => 'DOC_FRAGMENT', \XMLReader::NOTATION => 'NOTATION', \XMLReader::WHITESPACE => 'WHITESPACE', \XMLReader::SIGNIFICANT_WHITESPACE => 'SIGNIFICANT_WHITESPACE', \XMLReader::END_ELEMENT => 'END_ELEMENT', \XMLReader::END_ENTITY => 'END_ENTITY', \XMLReader::XML_DECLARATION => 'XML_DECLARATION', ]; public static function castXmlReader(\XMLReader $reader, array $a, Stub $stub, bool $isNested) { $props = Caster::PREFIX_VIRTUAL.'parserProperties'; $info = [ 'localName' => $reader->localName, 'prefix' => $reader->prefix, 'nodeType' => new ConstStub(self::$nodeTypes[$reader->nodeType], $reader->nodeType), 'depth' => $reader->depth, 'isDefault' => $reader->isDefault, 'isEmptyElement' => \XMLReader::NONE === $reader->nodeType ? null : $reader->isEmptyElement, 'xmlLang' => $reader->xmlLang, 'attributeCount' => $reader->attributeCount, 'value' => $reader->value, 'namespaceURI' => $reader->namespaceURI, 'baseURI' => $reader->baseURI ? new LinkStub($reader->baseURI) : $reader->baseURI, $props => [ 'LOADDTD' => $reader->getParserProperty(\XMLReader::LOADDTD), 'DEFAULTATTRS' => $reader->getParserProperty(\XMLReader::DEFAULTATTRS), 'VALIDATE' => $reader->getParserProperty(\XMLReader::VALIDATE), 'SUBST_ENTITIES' => $reader->getParserProperty(\XMLReader::SUBST_ENTITIES), ], ]; if ($info[$props] = Caster::filter($info[$props], Caster::EXCLUDE_EMPTY, [], $count)) { $info[$props] = new EnumStub($info[$props]); $info[$props]->cut = $count; } $info = Caster::filter($info, Caster::EXCLUDE_EMPTY, [], $count); // +2 because hasValue and hasAttributes are always filtered $stub->cut += $count + 2; return $a + $info; } }
Upload File
Create Folder