コード例 #1
0
ファイル: repo.php プロジェクト: rodrigorm/cake_autotest
 /**
  * stop method
  *
  * @return void
  * @access protected
  */
 function _stop()
 {
     $this->_log('Return value: ' . (int) $this->returnValue, null, 'debug');
     return parent::_stop($this->returnValue);
 }
コード例 #2
0
 /**
  * Overridden to allow Stop messages
  *
  * @param integer $status
  * @access protected
  * @return void
  */
 function _stop($status = 0)
 {
     $this->out($status === 0 ? __('Quitting.', true) : __('Aborting.', true));
     parent::_stop($status);
 }
コード例 #3
0
ファイル: multitasker.php プロジェクト: surjit/Multitask
 function _stop()
 {
     foreach ($this->threads as $thread) {
         $thread->stop();
     }
     parent::_stop();
 }