X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/symfony/var-dumper/Caster
home
/
prisjneg
/
public_html
/
vendor
/
symfony
/
var-dumper
/
Caster
/
π
..
π
AmqpCaster.php
(6.72 KB)
π
ArgsStub.php
(2.24 KB)
π
Caster.php
(6.73 KB)
π
ClassStub.php
(3.76 KB)
π
ConstStub.php
(740 B)
π
CutArrayStub.php
(696 B)
π
CutStub.php
(1.89 KB)
π
DOMCaster.php
(9.03 KB)
π
DateCaster.php
(4.94 KB)
π
DoctrineCaster.php
(1.74 KB)
π
DsCaster.php
(1.55 KB)
π
DsPairStub.php
(625 B)
π
EnumStub.php
(637 B)
π
ExceptionCaster.php
(16.38 KB)
π
FFICaster.php
(5.53 KB)
π
FiberCaster.php
(1.07 KB)
π
FrameStub.php
(740 B)
π
GmpCaster.php
(749 B)
π
ImagineCaster.php
(949 B)
π
ImgStub.php
(637 B)
π
IntlCaster.php
(8.9 KB)
π
LinkStub.php
(3.29 KB)
π
MemcachedCaster.php
(2.27 KB)
π
MysqliCaster.php
(691 B)
π
PdoCaster.php
(3.54 KB)
π
PgSqlCaster.php
(5.46 KB)
π
ProxyManagerCaster.php
(758 B)
π
RdKafkaCaster.php
(4.97 KB)
π
RedisCaster.php
(5.43 KB)
π
ReflectionCaster.php
(15.35 KB)
π
ResourceCaster.php
(3.07 KB)
π
ScalarStub.php
(554 B)
π
SplCaster.php
(8.13 KB)
π
StubCaster.php
(2.47 KB)
π
SymfonyCaster.php
(3.69 KB)
π
TraceStub.php
(964 B)
π
UninitializedStub.php
(615 B)
π
UuidCaster.php
(668 B)
π
XmlReaderCaster.php
(3.33 KB)
π
XmlResourceCaster.php
(2.52 KB)
Editing: DsCaster.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 Ds\Collection; use Ds\Map; use Ds\Pair; use Symfony\Component\VarDumper\Cloner\Stub; /** * Casts Ds extension classes to array representation. * * @author JΓ‘chym TouΕ‘ek <enumag@gmail.com> * * @final */ class DsCaster { public static function castCollection(Collection $c, array $a, Stub $stub, bool $isNested): array { $a[Caster::PREFIX_VIRTUAL.'count'] = $c->count(); $a[Caster::PREFIX_VIRTUAL.'capacity'] = $c->capacity(); if (!$c instanceof Map) { $a += $c->toArray(); } return $a; } public static function castMap(Map $c, array $a, Stub $stub, bool $isNested): array { foreach ($c as $k => $v) { $a[] = new DsPairStub($k, $v); } return $a; } public static function castPair(Pair $c, array $a, Stub $stub, bool $isNested): array { foreach ($c->toArray() as $k => $v) { $a[Caster::PREFIX_VIRTUAL.$k] = $v; } return $a; } public static function castPairStub(DsPairStub $c, array $a, Stub $stub, bool $isNested): array { if ($isNested) { $stub->class = Pair::class; $stub->value = null; $stub->handle = 0; $a = $c->value; } return $a; } }
Upload File
Create Folder