for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* DataStructures for PHP
*
* @link https://github.com/SiroDiaz/DataStructures
* @copyright Copyright (c) 2017 Siro Díaz Palazón
* @license https://github.com/SiroDiaz/DataStructures/blob/master/README.md (MIT License)
*/
namespace DataStructures\Lists\Nodes;
use DataStructures\Lists\Nodes\SimpleLinkedListNode;
* DoublyLinkedList represents the node structure that points to
* the next and previous node.
* @author Siro Diaz Palazon <[email protected]>
class DoublyLinkedListNode extends SimpleLinkedListNode {
public $prev = null;
}