%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/zgjedhjet2017/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/
Upload File :
Create Path :
Current File : /var/www/html/zgjedhjet2017/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/class.test

Class
-----
<?php

class Foo extends Bar implements ABC, \DEF, namespace\GHI
{
    var $a = 'foo';
    private $b = 'bar';
    static $c = 'baz';
    function test()
    {
        $this->a = 'bar';
        echo 'test';
    }

    protected function baz() {}
    public function foo() {}
    abstract static function bar() {}
}

trait Bar
{
    function test()
    {
    }
}
-----
class Foo extends Bar implements ABC, \DEF, namespace\GHI
{
    var $a = 'foo';
    private $b = 'bar';
    static $c = 'baz';
    function test()
    {
        $this->a = 'bar';
        echo 'test';
    }
    protected function baz()
    {
    }
    public function foo()
    {
    }
    static abstract function bar()
    {
    }
}
trait Bar
{
    function test()
    {
    }
}

Zerion Mini Shell 1.0