![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/brick/varexporter/src/Internal/ |
<?php declare(strict_types=1); namespace Brick\VarExporter\Internal; use Brick\VarExporter\ExportException; /** * An exporter that handles a specific type of object. * * @internal This class is for internal use, and not part of the public API. It may change at any time without warning. */ abstract class ObjectExporter { /** * @var GenericExporter */ protected $exporter; /** * @param GenericExporter $exporter */ public function __construct(GenericExporter $exporter) { $this->exporter = $exporter; } /** * Returns whether this exporter supports the given object. * * @param \ReflectionObject $reflectionObject A reflection of the object. * * @return bool */ abstract public function supports(\ReflectionObject $reflectionObject) : bool; /** * Exports the given object. * * @param object $object The object to export. * @param \ReflectionObject $reflectionObject A reflection of the object. * @param string[] $path The path to the current object in the array/object graph. * @param int[] $parentIds The ids of all objects higher in the graph. * * @return string[] The lines of code. * * @throws ExportException */ abstract public function export(object $object, \ReflectionObject $reflectionObject, array $path, array $parentIds) : array; /** * Returns the code to create a new object of the given class. * * If the class has a constructor, reflection will be used to bypass it. * * @param \ReflectionClass $class * * @return string[] The lines of code. */ final protected function getCreateObjectCode(\ReflectionClass $class) : array { $className = '\\' . $class->getName(); if ($class->getConstructor() === null) { return ['$object = new ' . $className . ';']; } $lines = ['$class = new \ReflectionClass(' . $className . '::class);']; if ($this->exporter->addTypeHints) { $lines[] = ''; $lines[] = '/** @var ' . $className . ' $object */'; } $lines[] = '$object = $class->newInstanceWithoutConstructor();'; return $lines; } /** * Wraps the given PHP code in a static closure. * * @param string[] $code The lines of code. * * @return string[] The lines of code, wrapped in a closure. */ final protected function wrapInClosure(array $code) : array { return array_merge( ['(static function() {'], $this->exporter->indent($code), ['})()'] ); } }