File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Cache/Events
Upload
[..]
CacheEvent.php (918 B)
Edit
Rename
Del
CacheFailedOver.php (414 B)
Edit
Rename
Del
CacheFlushFailed.php (765 B)
Edit
Rename
Del
CacheFlushed.php (761 B)
Edit
Rename
Del
CacheFlushing.php (762 B)
Edit
Rename
Del
CacheHit.php (536 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
KeyWriteFailed.php (759 B)
Edit
Rename
Del
KeyWritten.php (736 B)
Edit
Rename
Del
RetrievingManyKeys.php (522 B)
Edit
Rename
Del
WritingKey.php (740 B)
Edit
Rename
Del
WritingManyKeys.php (886 B)
Edit
Rename
Del
Edit: CacheFlushing.php
<?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; } }
Simpan