Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
moufmouf committed Apr 15, 2020
1 parent 7705638 commit 0d30fa4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion phpstan.neon
@@ -1,3 +1,3 @@
parameters:
ignoreErrors:
- "#PHPDoc tag @throws with type Psr\\\\SimpleCache\\\\InvalidArgumentException is not subtype of Throwable#"
- '#PHPDoc tag @throws with type Psr\\Cache\\InvalidArgumentException is not subtype of Throwable#'
4 changes: 2 additions & 2 deletions src/FileBoundCache.php
Expand Up @@ -5,13 +5,13 @@
namespace TheCodingMachine\CacheUtils;

use Psr\Cache\CacheItemPoolInterface;
use Psr\SimpleCache\InvalidArgumentException;
use Psr\Cache\InvalidArgumentException;
use function filemtime;
use function str_replace;

class FileBoundCache implements FileBoundCacheInterface
{
/** @var CacheInterface */
/** @var CacheItemPoolInterface */
private $cache;
/** @var string */
private $cachePrefix;
Expand Down

0 comments on commit 0d30fa4

Please sign in to comment.