Hacked By AnonymousFox

Current Path : /proc/thread-self/root/proc/self/root/opt/alt/php72/usr/share/pear/test/Structures_LinkedList/tests/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/opt/alt/php72/usr/share/pear/test/Structures_LinkedList/tests/SingleLinkTester.php

<?php
class LinkTester extends Structures_LinkedList_SingleNode {
    protected $_my_number;

    function __construct($num) {
        $this->_my_number = $num;
    }

    function getNumb() {
        return $this->_my_number;
    }

    function setNumb($numb) {
        $this->_my_number = $numb;
    }
}

$tester1 = new LinkTester(1);
$tester2 = new LinkTester(2);
$tester3 = new LinkTester(3);
$tester4 = new LinkTester(4);
$tester5 = new LinkTester(5);

?>

Hacked By AnonymousFox1.0, Coded By AnonymousFox