diff --git a/README.md b/README.md index f70fd64..1e8961a 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# Filesystem PSR-6 adapter +# Filesystem PSR-6 adapter using Flysystem [![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) This is a implementation for the PSR-6 for a filesystem cache. This implementation supports tags. This adapter -required [Flysystem](http://flysystem.thephpleague.com/). +requires [Flysystem](http://flysystem.thephpleague.com/). -| Feature | | -| ------- | - | +| Feature | Supported | +| ------- | --------- | | Flush everything | Yes | Expiration time | Yes -| Support for tags | Yes \ No newline at end of file +| Support for tags | Yes diff --git a/src/FilesystemCachePool.php b/src/FilesystemCachePool.php index 05015db..3f77ec6 100644 --- a/src/FilesystemCachePool.php +++ b/src/FilesystemCachePool.php @@ -23,7 +23,7 @@ class FilesystemCachePool extends AbstractCachePool { const CACHE_PATH = 'cache'; /** - * @var Filesystem + * @type Filesystem */ private $filesystem; diff --git a/tests/IntegrationPoolTest.php b/tests/IntegrationPoolTest.php index d73e585..bd84f50 100644 --- a/tests/IntegrationPoolTest.php +++ b/tests/IntegrationPoolTest.php @@ -19,7 +19,7 @@ class IntegrationPoolTest extends CachePoolTest { /** - * @var Filesystem + * @type Filesystem */ private $filesystem; diff --git a/tests/IntegrationTagTest.php b/tests/IntegrationTagTest.php index 8c4fbf0..f5368e4 100644 --- a/tests/IntegrationTagTest.php +++ b/tests/IntegrationTagTest.php @@ -19,7 +19,7 @@ class IntegrationTagTest extends TaggableCachePoolTest { /** - * @var Filesystem + * @type Filesystem */ private $filesystem;