FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
storage-interface/src/StorageInterface.php at main · quillstack/storage-interface · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
quillstack
/
storage-interface
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
storage-interface
/
src
/
StorageInterface.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (30 loc) · 839 Bytes
Breadcrumbs
storage-interface
/
src
/
StorageInterface.php
Copy path
File metadata and controls
38 lines (30 loc) · 839 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<?php
declare
(strict_types=
1
);
namespace
Quillstack
\
StorageInterface
;
interface
StorageInterface
{
/**
* Retrieve the contents of a file.
*/
public
function
get
(
string
$
path
):
mixed
;
/**
* Checks if the file exists on the storage.
*/
public
function
exists
(
string
$
path
):
bool
;
/**
* Checks if the file is missing from the storage.
*/
public
function
missing
(
string
$
path
):
bool
;
/**
* Saves the contents to the file, the existing file is overwritten.
*/
public
function
save
(
string
$
path
,
mixed
$
contents
):
bool
;
/**
* Saves the contents at the end of the file.
*/
public
function
add
(
string
$
path
,
mixed
$
contents
):
bool
;
/**
* Deletes one or more files.
*/
public
function
delete
(
string
$
path
,
string
...
$
more
):
bool
;
}
Back
|
FazBrowse Home
|
New Git URL