PradoCommandLineInterpreter::printGreeting PHP Method

printGreeting() public static method

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

Usage Example

Ejemplo n.º 1
0
 public function performAction($args)
 {
     PradoCommandLineInterpreter::printGreeting();
     $this->createTestFixtures($args[1]);
     return true;
 }