getBuildFailedMessage() 보호된 메소드

Get the message to return when a build failed.
protected getBuildFailedMessage ( ) : string
리턴 string The classic "BUILD FAILED"
예제 #1
0
 /**
  * This is an override point: the message that indicates whether a build failed.
  * Subclasses can change/enhance the message.
  *
  * @return string The classic "BUILD FAILED" plus a timestamp
  */
 protected function getBuildFailedMessage()
 {
     return parent::getBuildFailedMessage() . self::$SPACER . date('n/d/Y h:m a');
 }