47 lines
741 B
PHP
47 lines
741 B
PHP
<?php
|
|
|
|
namespace Illuminate\Cache\Events;
|
|
|
|
abstract class CacheEvent
|
|
{
|
|
/**
|
|
* The key of the event.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $key;
|
|
|
|
/**
|
|
* The tags that were assigned to the key.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $tags;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param string $key
|
|
* @param array $tags
|
|
* @return void
|
|
*/
|
|
public function __construct($key, array $tags = [])
|
|
{
|
|
$this->key = $key;
|
|
$this->tags = $tags;
|
|
}
|
|
|
|
/**
|
|
* Set the tags for the cache event.
|
|
*
|
|
* @param array $tags
|
|
* @return $this
|
|
*/
|
|
public function setTags($tags)
|
|
{
|
|
$this->tags = $tags;
|
|
|
|
return $this;
|
|
}
|
|
}
|