%PDF- %PDF-
Direktori : /var/www/html/car_rent/vendor/laravel/framework/src/Illuminate/Cache/Events/ |
Current File : /var/www/html/car_rent/vendor/laravel/framework/src/Illuminate/Cache/Events/KeyForgotten.php |
<?php namespace Illuminate\Cache\Events; class KeyForgotten { /** * The key that was forgotten. * * @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, $tags = []) { $this->key = $key; $this->tags = $tags; } }