/**
  * perform all consistency checks
  * @return ConsistencyError[]
  */
 public function check()
 {
     $cerrList_parent = parent::check();
     $cerrList1 = $this->checkAnalyzed();
     $cerrList = array_merge($cerrList_parent, $cerrList1);
     return $cerrList;
 }
Esempio n. 2
0
 /**
  * Initialize complex static variables
  * @static
  */
 public static function staticInit()
 {
     self::$logger = Logger::getLogger(__CLASS__);
 }