123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Symfony\Component\VarDumper\Caster;
- use Symfony\Component\VarDumper\Cloner\Stub;
- final class MysqliCaster
- {
- public static function castMysqliDriver(\mysqli_driver $c, array $a, Stub $stub, bool $isNested): array
- {
- foreach ($a as $k => $v) {
- if (isset($c->$k)) {
- $a[$k] = $c->$k;
- }
- }
- return $a;
- }
- }
|