/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Cache/Events/CacheFlushing.php
45 строк
762 B
Jordancho Eftimov
Improve PHPDoc for the Illuminate\Cache folder files (#56028)
13 июн 2025, 20:50
Не верифицирован
13 июн 2025, 20:50
6d3fbc5
Код
Авторство
О чём код?
<?php namespace Illuminate\Cache\Events; class CacheFlushing { /** * The name of the cache store. * * @var string|null */ public $storeName; /** * The tags that were assigned to the key. * * @var array */ public $tags; /** * Create a new event instance. * * @param string|null $storeName * @param array $tags */ public function __construct($storeName, array $tags = []) { $this->storeName = $storeName; $this->tags = $tags; } /** * Set the tags for the cache event. * * @param array $tags * @return $this */ public function setTags($tags) { $this->tags = $tags; return $this; } }