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/SBogers85/equichecker.com/vendor/classpreloader/classpreloader/src/ClassNode.php
<?php

/*
 * This file is part of Class Preloader.
 *
 * (c) Graham Campbell <graham@alt-three.com>
 * (c) Michael Dowling <mtdowling@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace ClassPreloader;

/**
 * This is the class node class.
 *
 * This class contains a value, and the previous/next pointers.
 */
class ClassNode
{
    /**
     * The next node pointer.
     *
     * @var \ClassPreloader\ClassNode|null
     */
    public $next;

    /**
     * The previous node pointer.
     *
     * @var \ClassPreloader\ClassNode|null
     */
    public $prev;

    /**
     * The value of the class node.
     *
     * @var mixed
     */
    public $value;

    /**
     * Create a new class node instance.
     *
     * @param mixed                          $value
     * @param \ClassPreloader\ClassNode|null $prev
     *
     * @return void
     */
    public function __construct($value = null, $prev = null)
    {
        $this->value = $value;
        $this->prev = $prev;
    }
}