Exemplo n.º 1
0
 /**
  * Get the last queue restart timestamp, or null.
  *
  * @return int|null
  */
 protected function getTimestampOfLastQueueRestart()
 {
     if ($this->cache) {
         return $this->cache->get('illuminate:queue:restart');
     }
 }
 /**
  * {@inheritDoc}
  */
 public function destroy($sessionId)
 {
     return $this->cache->forget($sessionId);
 }