mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
14 lines
180 B
PHP
14 lines
180 B
PHP
<?php
|
|
|
|
/**
|
|
* parent class for preconditions
|
|
*
|
|
*/
|
|
abstract class gtPreCondition {
|
|
|
|
abstract public function check($clo);
|
|
|
|
abstract public function getMessage();
|
|
|
|
}
|
|
?>
|