File "ReducedArgument.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/backtrace/src/Arguments/ReducedArgument/ReducedArgument.php
File size: 426 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\Backtrace\Arguments\ReducedArgument;

class ReducedArgument implements ReducedArgumentContract
{
    /** @var mixed */
    public $value;

    /** @var string */
    public $originalType;

    /**
     * @param mixed $value
     */
    public function __construct(
        $value,
        string $originalType
    ) {
        $this->originalType = $originalType;
        $this->value = $value;
    }
}