コード例 #1
0
ファイル: Log.php プロジェクト: totallydave/auto-deploy
 /**
  * @param Log $log
  *
  * @return $this
  */
 public function addLog(Log $log)
 {
     $this->messages = array_merge($this->messages, $log->getMessages());
     return $this;
 }