Вход Регистрация
Файл: gapps/vendor/laravel/framework/src/Illuminate/Cache/Events/CacheMissed.php
Строк: 15
<?php

namespace IlluminateCacheEvents;

class 
CacheMissed
{
    
/**
     * The key that was missed.
     *
     * @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;
    }
}
Онлайн: 0
Реклама