FrameStub.php 730 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\VarDumper\Caster;
  11. /**
  12. * Represents a single backtrace frame as returned by debug_backtrace() or Exception->getTrace().
  13. *
  14. * @author Nicolas Grekas <p@tchwork.com>
  15. */
  16. class FrameStub extends EnumStub
  17. {
  18. public $keepArgs;
  19. public $inTraceStub;
  20. public function __construct(array $frame, $keepArgs = true, $inTraceStub = false)
  21. {
  22. $this->value = $frame;
  23. $this->keepArgs = $keepArgs;
  24. $this->inTraceStub = $inTraceStub;
  25. }
  26. }