Example #1
0
 /**
  * @param $responseConfig
  */
 protected function processDelay(Response $responseConfig)
 {
     if ($responseConfig->getDelayMillis()) {
         $this->logger->debug('Delaying the response for ' . $responseConfig->getDelayMillis() . ' milliseconds');
         usleep($responseConfig->getDelayMillis() * 1000);
     }
 }