gossi\codegen\model\AbstractPhpMember::__construct PHP 메소드

__construct() 공개 메소드

Creates a new member
public __construct ( string $name )
$name string the name of the member
    public function __construct($name)
    {
        $this->setName($name);
        $this->docblock = new Docblock();
    }

Usage Example

예제 #1
0
 public function __construct($name)
 {
     parent::__construct($name);
     $this->initParameters();
 }