PradoCommandLineInterpreter::printGreeting PHP Méthode

printGreeting() public static méthode

public static printGreeting ( )
    public static function printGreeting()
    {
        echo "Command line tools for Prado " . Prado::getVersion() . ".\n";
    }

Usage Example

Exemple #1
0
 public function performAction($args)
 {
     PradoCommandLineInterpreter::printGreeting();
     $this->createTestFixtures($args[1]);
     return true;
 }