PHP 8.3.31
Preview: CacheEvent.php Size: 938 B
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Cache/Events/CacheEvent.php

<?php

namespace Illuminate\Cache\Events;

abstract class CacheEvent
{
    /**
     * The name of the cache store.
     *
     * @var string|null
     */
    public $storeName;

    /**
     * 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|null  $storeName
     * @param  string  $key
     * @param  array  $tags
     * @return void
     */
    public function __construct($storeName, $key, array $tags = [])
    {
        $this->storeName = $storeName;
        $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;
    }
}

Directory Contents

Dirs: 0 × Files: 12

Name Size Perms Modified Actions
938 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
556 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
91 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
93 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
95 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
92 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
779 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
756 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
93 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
542 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
760 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
906 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).