File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Cache/Events
Upload
[..]
CacheFailedOver.php (414 B)
Edit
Rename
Del
CacheFlushFailed.php (765 B)
Edit
Rename
Del
CacheFlushed.php (761 B)
Edit
Rename
Del
CacheLocksFlushed.php (387 B)
Edit
Rename
Del
CacheLocksFlushing.php (388 B)
Edit
Rename
Del
CacheMissed.php (91 B)
Edit
Rename
Del
ForgettingKey.php (93 B)
Edit
Rename
Del
KeyWritten.php (736 B)
Edit
Rename
Del
WritingManyKeys.php (886 B)
Edit
Rename
Del
Edit: KeyWritten.php
<?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 */ public function __construct($storeName, $key, $value, $seconds = null, $tags = []) { parent::__construct($storeName, $key, $tags); $this->value = $value; $this->seconds = $seconds; } }
Simpan