renamed Contract to Contracts

This commit is contained in:
Fabien Potencier
2018-07-13 19:06:58 +02:00
parent 33dd2ce09c
commit b6445e12d4
7 changed files with 7 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ use Symfony\Component\Cache\Exception\InvalidArgumentException;
use Symfony\Component\Cache\PruneableInterface;
use Symfony\Component\Cache\ResettableInterface;
use Symfony\Component\Cache\Traits\GetTrait;
use Symfony\Contract\Service\ResetInterface;
use Symfony\Contracts\Service\ResetInterface;
/**
* Chains several adapters together.

View File

@@ -16,7 +16,7 @@ use Symfony\Component\Cache\CacheInterface;
use Symfony\Component\Cache\CacheItem;
use Symfony\Component\Cache\PruneableInterface;
use Symfony\Component\Cache\ResettableInterface;
use Symfony\Contract\Service\ResetInterface;
use Symfony\Contracts\Service\ResetInterface;
/**
* An adapter that collects data about all cache calls.

View File

@@ -13,7 +13,7 @@ namespace Symfony\Component\Cache;
use Doctrine\Common\Cache\CacheProvider;
use Psr\Cache\CacheItemPoolInterface;
use Symfony\Contract\Service\ResetInterface;
use Symfony\Contracts\Service\ResetInterface;
/**
* @author Nicolas Grekas <p@tchwork.com>

View File

@@ -11,7 +11,7 @@
namespace Symfony\Component\Cache;
use Symfony\Contract\Service\ResetInterface;
use Symfony\Contracts\Service\ResetInterface;
/**
* Resets a pool's local state.

View File

@@ -15,7 +15,7 @@ use Psr\SimpleCache\CacheInterface;
use Symfony\Component\Cache\Exception\InvalidArgumentException;
use Symfony\Component\Cache\PruneableInterface;
use Symfony\Component\Cache\ResettableInterface;
use Symfony\Contract\Service\ResetInterface;
use Symfony\Contracts\Service\ResetInterface;
/**
* Chains several caches together.

View File

@@ -14,7 +14,7 @@ namespace Symfony\Component\Cache\Simple;
use Psr\SimpleCache\CacheInterface;
use Symfony\Component\Cache\PruneableInterface;
use Symfony\Component\Cache\ResettableInterface;
use Symfony\Contract\Service\ResetInterface;
use Symfony\Contracts\Service\ResetInterface;
/**
* An adapter that collects data about all cache calls.

View File

@@ -12,7 +12,7 @@
namespace Symfony\Component\Cache\Traits;
use Symfony\Component\Cache\PruneableInterface;
use Symfony\Contract\Service\ResetInterface;
use Symfony\Contracts\Service\ResetInterface;
/**
* @author Nicolas Grekas <p@tchwork.com>