您的位置:首页 > 编程语言 > PHP开发

每天laravel-20160706|KeyForgotten

2016-04-07 10:02 465 查看
<?php

namespace Illuminate\Cache\Events;

class KeyForgotten
{
/**
* The key that was forgotten.
*
* @var string
*/
public $key;// a key

/**
* The tags that were assigned to the key.
*
* @var array
*/
public $tags;// a tags

/**
* Create a new event instance.
*
* @param  string  $key
* @param  array  $tags
* @return void
*/
public function __construct($key, $tags = [])
{
$this->key = $key;
$this->tags = $tags;
}// set key and tag to forgotten
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: