b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin/phppayment/src/xdebug/tests/debugger/
File Upload :
Current File : E:/www/b-group.old/spfin/phppayment/src/xdebug/tests/debugger/bug00619.inc

<?php
abstract class P {

    private $private_prop = ''; // does NOT show up

    protected $protected_prop = ''; // Shows

    public $public_prop = ''; // Shows

    protected function test() {}

}

class C extends P {

    public function __construct() {} // Set "break point" here

}

$c = new C();
?>

Copyright © 2019 by b0y-101