コード例 #1
0
 /**
  * Get the max time to use.
  *
  * @return int
  */
 private function getMaxTime()
 {
     if (isset($this->params['max_time'])) {
         return $this->params['max_time'];
     }
     return $this->config->getDefaultMaxTime();
 }
コード例 #2
0
 function let(Config $config, Encrypter $encrypter)
 {
     $config->getDefaultMinTime()->willReturn(5);
     $config->getDefaultMaxTime()->willReturn(3600);
     $this->beConstructedWith($config, $encrypter);
 }