PradoCommandLineInterpreter::printGreeting PHP 메소드

printGreeting() 공개 정적인 메소드

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

Usage Example

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