Skip to content

Commit 67256bf

Browse files
committed
Merge pull request #2 from Nyholm/master
Improved readme
2 parents fcdad51 + 2821a61 commit 67256bf

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Filesystem PSR-6 adapter
1+
# Filesystem PSR-6 adapter using Flysystem
22
[![Build Status](https://travis-ci.org/php-cache/filesystem-adapter.svg?branch=master)](https://travis-ci.org/php-cache/filesystem-adapter) [![codecov.io](https://codecov.io/github/php-cache/filesystem-adapter/coverage.svg?branch=master)](https://codecov.io/github/php-cache/filesystem-adapter?branch=master)
33

44
This is a implementation for the PSR-6 for a filesystem cache. This implementation supports tags. This adapter
5-
required [Flysystem](http://flysystem.thephpleague.com/).
5+
requires [Flysystem](http://flysystem.thephpleague.com/).
66

7-
| Feature | |
8-
| ------- | - |
7+
| Feature | Supported |
8+
| ------- | --------- |
99
| Flush everything | Yes
1010
| Expiration time | Yes
11-
| Support for tags | Yes
11+
| Support for tags | Yes

src/FilesystemCachePool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class FilesystemCachePool extends AbstractCachePool
2323
{
2424
const CACHE_PATH = 'cache';
2525
/**
26-
* @var Filesystem
26+
* @type Filesystem
2727
*/
2828
private $filesystem;
2929

tests/IntegrationPoolTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class IntegrationPoolTest extends CachePoolTest
2020
{
2121
/**
22-
* @var Filesystem
22+
* @type Filesystem
2323
*/
2424
private $filesystem;
2525

tests/IntegrationTagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class IntegrationTagTest extends TaggableCachePoolTest
2020
{
2121
/**
22-
* @var Filesystem
22+
* @type Filesystem
2323
*/
2424
private $filesystem;
2525

0 commit comments

Comments
 (0)