Skip to content

Commit

Permalink
fix(cache): bump cache version (#508)
Browse files Browse the repository at this point in the history
the update of reflection-docblock means old caches are no longer valid.

fixes #507
  • Loading branch information
felixfbecker committed Oct 29, 2017
1 parent 99d8a36 commit c74076d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Indexer.php
Expand Up @@ -16,9 +16,9 @@
class Indexer
{
/**
* @var The prefix for every cache item
* @var int The prefix for every cache item
*/
const CACHE_VERSION = 1;
const CACHE_VERSION = 2;

/**
* @var FilesFinder
Expand Down

0 comments on commit c74076d

Please sign in to comment.