-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFileStore.php
More file actions
40 lines (34 loc) · 948 Bytes
/
FileStore.php
File metadata and controls
40 lines (34 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
declare(strict_types=1);
/*
* UserFrosting Framework (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/framework
* @copyright Copyright (c) 2013-2024 Alexander Weissman, Louis Charette, Jordan Mele
* @license https://github.com/userfrosting/framework/blob/master/LICENSE.md (MIT License)
*/
namespace UserFrosting\Cache;
use Illuminate\Cache\FileStore as IlluminateFileStore;
use Illuminate\Contracts\Cache\Store;
use Illuminate\Filesystem\Filesystem;
/**
* Setup a cache instance using the `file` driver.
*/
class FileStore extends AbstractStore
{
/**
* Accept the file driver $path.
*
* @param string $path (default: "./")
*/
public function __construct(protected $path = './')
{
}
/**
* Create the Illuminate FileStore.
*/
public function getStore(): Store
{
return new IlluminateFileStore(new Filesystem(), $this->path);
}
}