🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:CacheFlushed.php
<?php namespace Illuminate\Cache\Events; class CacheFlushed { /** * 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; } }
Save Changes
Cancel
Create New File
Create New Folder