/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Cache/Events/WritingKey.php
37 строк
740 B
Andrew Brown
[12.x] remove `@return` docblocks on constructors (#55076)
19 мар 2025, 23:10
Не верифицирован
19 мар 2025, 23:10
8f0e00b
Код
Авторство
О чём код?
<?php namespace Illuminate\Cache\Events; class WritingKey extends CacheEvent { /** * The value that will be written. * * @var mixed */ public $value; /** * The number of seconds the key should be valid. * * @var int|null */ public $seconds; /** * Create a new event instance. * * @param string|null $storeName * @param string $key * @param mixed $value * @param int|null $seconds * @param array $tags */ public function __construct($storeName, $key, $value, $seconds = null, $tags = []) { parent::__construct($storeName, $key, $tags); $this->value = $value; $this->seconds = $seconds; } }