
| Path : /usr/src/php/scripts/dev/generate-phpt/src/setup/preconditions/ |
| Current File : //usr/src/php/scripts/dev/generate-phpt/src/setup/preconditions/gtIsSpecifiedFunctionOrMethod.php |
<?php
/**
* Check that either a method or a function is specified
*
*/
class gtIsSpecifiedFunctionOrMethod extends gtPreCondition {
public function check( $clo) {
if($clo->hasOption('f') || $clo->hasOption('m')) {
return true;
}
return false;
}
public function getMessage() {
return gtText::get('functionOrMethodNotSpecified');
}
}
?>