File manager - Edit - /home/autoph/public_html/projects/vendor/laravel/framework/src/Illuminate/Cache/Events/KeyWritten.php
Back
<?php namespace Illuminate\Cache\Events; class KeyWritten extends CacheEvent { /** * The value that was 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 * @return void */ public function __construct($storeName, $key, $value, $seconds = null, $tags = []) { parent::__construct($storeName, $key, $tags); $this->value = $value; $this->seconds = $seconds; } }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0.33 |
proxy
|
phpinfo
|
Settings