for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class Cache | Cache.php
* @package Faulancer\Cache
* @author Florian Knapp <[email protected]>
*/
namespace Faulancer\Cache;
* Class Cache
class Cache
{
/** @var CacheableInterface[] */
protected $resources = [];
public function handle(CacheableInterface $class)
$this->resources[] = [
'name' => $class
];
}