/**
  * Get the min time to use.
  *
  * @return int
  */
 private function getMinTime()
 {
     if (isset($this->params['min_time'])) {
         return $this->params['min_time'];
     }
     return $this->config->getDefaultMinTime();
 }
 function let(Config $config, Encrypter $encrypter)
 {
     $config->getDefaultMinTime()->willReturn(5);
     $config->getDefaultMaxTime()->willReturn(3600);
     $this->beConstructedWith($config, $encrypter);
 }