Skip to content

Commit

Permalink
Merge pull request #2 from Nyholm/master
Browse files Browse the repository at this point in the history
Improved readme
  • Loading branch information
Nyholm committed Jan 7, 2016
2 parents fcdad51 + 2821a61 commit 67256bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
| Support for tags | Yes
2 changes: 1 addition & 1 deletion src/FilesystemCachePool.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class FilesystemCachePool extends AbstractCachePool
{
const CACHE_PATH = 'cache';
/**
* @var Filesystem
* @type Filesystem
*/
private $filesystem;

Expand Down
2 changes: 1 addition & 1 deletion tests/IntegrationPoolTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class IntegrationPoolTest extends CachePoolTest
{
/**
* @var Filesystem
* @type Filesystem
*/
private $filesystem;

Expand Down
2 changes: 1 addition & 1 deletion tests/IntegrationTagTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class IntegrationTagTest extends TaggableCachePoolTest
{
/**
* @var Filesystem
* @type Filesystem
*/
private $filesystem;

Expand Down

0 comments on commit 67256bf

Please sign in to comment.