__construct() public method

Constructor.
public __construct ( $params = [] )
示例#1
0
文件: Character.php 项目: Jony01/LLD
 public function __construct($context_lines = 0)
 {
     parent::__construct();
     $this->_leading_context_lines = $context_lines;
     $this->_trailing_context_lines = $context_lines;
     $this->orig = "";
     $this->final = "";
 }