Exemple #1
0
 protected function startLog($sMessage = '', array $aVars = array())
 {
     parent::startLog($this->asToken(), array_merge(array('file' => (string) $this->getNode()->asToken()), $aVars));
 }
Exemple #2
0
 protected function parseText(dom\text $node, $bTrim = true)
 {
     $sValue = parent::parseText($node);
     return $bTrim ? trim($sValue) : $sValue;
 }