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/ExceptionPresenter.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;

/**
 * An Exception Presenter.
 */
class ExceptionPresenter extends ObjectPresenter
{
    /**
     * ExceptionPresenter can present Exceptions.
     *
     * @param mixed $value
     *
     * @return boolean
     */
    public function canPresent($value)
    {
        return $value instanceof \Exception;
    }

    /**
     * Get an array of exception object properties.
     *
     * @param object           $value
     * @param \ReflectionClass $class
     * @param int              $options One of Presenter constants
     *
     * @return array
     */
    protected function getProperties($value, \ReflectionClass $class, $options = 0)
    {
        $props = array(
            '<protected>message</protected>' => $value->getMessage(),
            '<protected>code</protected>'    => $value->getCode(),
            '<protected>file</protected>'    => $value->getFile(),
            '<protected>line</protected>'    => $value->getLine(),
            '<private>previous</private>'    => $value->getPrevious(),
        );

        return array_merge(array_filter($props), parent::getProperties($value, $class, $options));
    }
}