Example #1
0
 function __construct($orig_lines, $final_lines)
 {
     list($orig_words, $orig_stripped) = $this->_split($orig_lines);
     list($final_words, $final_stripped) = $this->_split($final_lines);
     parent::__construct($orig_words, $final_words, $orig_stripped, $final_stripped);
 }
Example #2
0
 function __construct($orig_lines, $closing_lines)
 {
     wfProfileIn(__METHOD__);
     list($orig_words, $orig_stripped) = $this->_split($orig_lines);
     list($closing_words, $closing_stripped) = $this->_split($closing_lines);
     parent::__construct($orig_words, $closing_words, $orig_stripped, $closing_stripped);
     wfProfileOut(__METHOD__);
 }
 /**
  * @param string[] $orig_lines
  * @param string[] $closing_lines
  */
 public function __construct($orig_lines, $closing_lines)
 {
     list($orig_words, $orig_stripped) = $this->split($orig_lines);
     list($closing_words, $closing_stripped) = $this->split($closing_lines);
     parent::__construct($orig_words, $closing_words, $orig_stripped, $closing_stripped);
 }