Home
last modified time | relevance | path

Searched refs:CacheFactoryInterface (Results 1 – 7 of 7) sorted by relevance

/webtrees/app/
H A DRegistry.php22 use Fisharebest\Webtrees\Contracts\CacheFactoryInterface; alias
56 private static CacheFactoryInterface $cache_factory;
115 * @param CacheFactoryInterface|null $factory
117 * @return CacheFactoryInterface
119 public static function cache(CacheFactoryInterface|null $factory = null): CacheFactoryInterface
121 if ($factory instanceof CacheFactoryInterface) {
/webtrees/app/Factories/
H A DCacheFactory.php23 use Fisharebest\Webtrees\Contracts\CacheFactoryInterface; alias
33 class CacheFactory implements CacheFactoryInterface
/webtrees/tests/app/
H A DDefaultUserTest.php22 use Fisharebest\Webtrees\Contracts\CacheFactoryInterface; alias
39 $cache_factory = $this->createMock(CacheFactoryInterface::class);
H A DUserTest.php22 use Fisharebest\Webtrees\Contracts\CacheFactoryInterface; alias
40 $cache_factory = $this->createMock(CacheFactoryInterface::class);
H A DTreeTest.php22 use Fisharebest\Webtrees\Contracts\CacheFactoryInterface; alias
52 $cache_factory = $this->createMock(CacheFactoryInterface::class);
/webtrees/tests/app/Services/
H A DUserServiceTest.php22 use Fisharebest\Webtrees\Contracts\CacheFactoryInterface; alias
40 $cache_factory = $this->createMock(CacheFactoryInterface::class);
/webtrees/app/Contracts/
H A DCacheFactoryInterface.php27 interface CacheFactoryInterface interface