1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 04:02:19 +02:00
Files
archived-php-src/scripts/dev/generate-phpt/src/setup/gtPreCondition.php
2009-05-07 09:21:43 +00:00

14 lines
180 B
PHP

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