Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| DeletedFilesInMemoryFilesystemAdapter | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | /** |
| 3 | * The layer holding tombstones for files and directories deleted during the read-only session. |
| 4 | * |
| 5 | * A marker subclass so the two in-memory layers of {@see ReadOnlyFileSystemAdapter} are distinguishable |
| 6 | * in stack traces, in a debugger, and to static analysis. |
| 7 | * |
| 8 | * @package BrianHenryIE\FlysystemReadOnly |
| 9 | */ |
| 10 | |
| 11 | namespace BrianHenryIE\FlysystemReadOnly; |
| 12 | |
| 13 | /** |
| 14 | * An {@see InMemoryFilesystemAdapter} holding tombstones for paths deleted during the read-only session. |
| 15 | */ |
| 16 | class DeletedFilesInMemoryFilesystemAdapter extends InMemoryFilesystemAdapter |
| 17 | { |
| 18 | } |