-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/scripts/dev/generate-phpt/src/setup/preconditions/
File Upload :
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');
  }
}
?>

Copyright © 2017 || Recoded By Mr.Bumblebee