Skip to content

Commit 71e5c93

Browse files
committed
Merge pull request #5 from Nyholm/insight
insight fixes
2 parents 3f42f59 + 239a0fb commit 71e5c93

6 files changed

Lines changed: 4 additions & 5 deletions

File tree

.gitignore

100755100644
File mode changed.

.travis.yml

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ script:
2121
- php -dzend_extension=xdebug.so vendor/bin/phpunit --coverage-clover=coverage.xml
2222

2323
after_success:
24-
- codecov
24+
- codecov

LICENSE

100755100644
File mode changed.

composer.json

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
"Cache\\Taggable\\Tests\\": "tests/"
3636
}
3737
}
38-
}
38+
}

phpunit.xml.dist

100755100644
File mode changed.

src/TaggablePoolTrait.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Cache\Taggable;
1313

1414
use Psr\Cache\CacheItemInterface;
15-
use Psr\Cache\CacheItemPoolInterface;
1615

1716
/**
1817
* Use this trait with a CacheItemPoolInterface to support tagging.
@@ -121,8 +120,8 @@ private function getTagKey($name)
121120
/**
122121
* A TagId is retrieved from cache using the TagKey.
123122
*
124-
* @param CacheItemPoolInterface $storage
125-
* @param CacheItemInterface $item
123+
* @param \Psr\Cache\CacheItemPoolInterface $storage
124+
* @param CacheItemInterface $item
126125
*
127126
* @return string
128127
*/

0 commit comments

Comments
 (0)