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
CacheLocksFlushing.php (388 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: CacheFlushFailed.php
<?php namespace Illuminate\Cache\Events; class CacheFlushFailed { /** * 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; } }
Simpan