CacheMissed.php
TLDR
This file contains the CacheMissed
class, which is a subclass of the CacheEvent
class.
Classes
CacheMissed
The CacheMissed
class is a subclass of the CacheEvent
class. It represents an event of a cache miss, which occurs when a requested item is not found in the cache. The CacheMissed
class does not have any additional functionality or methods.
<?php
namespace Illuminate\Cache\Events;
class CacheMissed extends CacheEvent
{
//
}