HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers76/deblijdewei.nl/vendor/psy/psysh/src/Psy/Presenter/PHPParserPresenter.php
<?php

/*
 * This file is part of Psy Shell
 *
 * (c) 2012-2014 Justin Hileman
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Psy\Presenter;

use PhpParser\Node;

/**
 * A PhpParser Presenter.
 */
class PHPParserPresenter extends ObjectPresenter
{
    const FMT = '<object>\\<<class>%s</class>></object>';

    /**
     * PHPParserPresenter can present parse trees.
     *
     * @param mixed $value
     *
     * @return boolean
     */
    public function canPresent($value)
    {
        return $value instanceof Node;
    }

    /**
     * Present a reference to the object.
     *
     * @param object $value
     *
     * @return string
     */
    public function presentRef($value)
    {
        return sprintf(self::FMT, get_class($value));
    }

    /**
     * Get an array of object properties.
     *
     * @param object           $value
     * @param \ReflectionClass $class
     * @param int              $propertyFilter One of \ReflectionProperty constants
     *
     * @return array
     */
    protected function getProperties($value, \ReflectionClass $class, $propertyFilter)
    {
        $props = array();

        $props['type']       = $value->getType();
        $props['attributes'] = $value->getAttributes();

        foreach ($value->getSubNodeNames() as $name) {
            $props[$name] = $value->$name;
        }

        return $props;
    }
}