thadafinser / psr6-null-cache
PSR-6 cache NullObject implementation, to avoid null checks and for testing
Installs: 5 004
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 4
Open Issues: 0
Requires
- php: ~7.0
- psr/cache: ^1.0
Requires (Dev)
- fabpot/php-cs-fixer: ^1.11
- phpunit/phpunit: ^5.2
This package is not auto-updated.
Last update: 2024-10-26 19:10:51 UTC
README
The missing PSR-6 NullObject implementation.
You can use this package, when you want to
- avoid using
null
check logic, read more here - need a fake cache implementation for testing
Install
composer require thadafinser/psr6-null-cache
Example / usage
Before this package, you needed to allow null
as a parameter, if you wanted to avoid a package dependency to a specific PSR-6 cache implementation
Old code
namespace MyPackage; use Psr\Cache\CacheItemPoolInterface; class MyCode { public function __construct(CacheItemPoolInterface $cache = null) { $this->cache = $cache; } /** * Can return an instance of null, which is bad! * * @return null CacheItemPoolInterface */ public function getCache() { return $this->cache; } private function internalHeavyMethod() { $cacheKey = 'myKey'; // you need to check first, if there is a cache instance around if ($this->getCache() !== null && $this->getCache()->hasItem($cacheKey) === true) { // cache is available + it has a cache hit! return $this->getCache()->getItem($cacheKey); } $result = do_something_heavy(); // you need to check first, if there is a cache instance around if ($this->getCache() !== null) { $item = $this->getCache()->getItem($cacheKey); $item->set($result); $this->getCache()->save($item); } return $result; } }
New code
namespace MyPackage; use Psr\Cache\CacheItemPoolInterface; use Psr6NullCache\NullCacheItemPool; class MyCode { /** * You could require a cache instance, so you can remove the null check in __construct() as well * * @param CacheItemPoolInterface $cache */ public function __construct(CacheItemPoolInterface $cache = null) { if($cache === null){ $cache = new NullCacheItemPool(); } $this->cache = $cache; } /** * @return CacheItemPoolInterface */ public function getCache() { return $this->cache; } private function internalHeavyMethod() { $cacheKey = 'myKey'; if ($this->getCache()->hasItem($cacheKey) === true) { // cache is available + it has a cache hit! return $this->getCache()->getItem($cacheKey); } $result = do_something_heavy(); $item = $this->getCache()->getItem($cacheKey); $item->set($result); $this->getCache()->save($item); return $result; } }