webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
Events
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
CacheEvent.php
0.724KB
edt
ren
CacheHit.php
0.481KB
edt
ren
CacheMissed.php
0.089KB
edt
ren
KeyForgotten.php
0.09KB
edt
ren
KeyWritten.php
0.677KB
edt
ren
<?php namespace Illuminate\Cache\Events; abstract class CacheEvent { /** * The key of the event. * * @var string */ public $key; /** * The tags that were assigned to the key. * * @var array */ public $tags; /** * Create a new event instance. * * @param string $key * @param array $tags * @return void */ public function __construct($key, array $tags = []) { $this->key = $key; $this->tags = $tags; } /** * Set the tags for the cache event. * * @param array $tags * @return $this */ public function setTags($tags) { $this->tags = $tags; return $this; } }