root/scripts/dev/generate-phpt/src/setup/gtPreCondition.php

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. check
  2. getMessage

<?php

/**
 * parent class for preconditions
 *
 */
abstract class gtPreCondition {
  
  abstract public function check($clo); 
  
  abstract public function getMessage(); 
  
}

/* [<][>][^][v][top][bottom][index][help] */