addProxy() public method

public addProxy ( CacheTool\Proxy\ProxyInterface $proxy ) : CacheTool
$proxy CacheTool\Proxy\ProxyInterface
return CacheTool
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     opcache_reset();
     $adapter = new FastCGI('/dev/shm/php-cgi.sock');
     $cache = new CacheTool();
     $cache->setAdapter($adapter);
     $cache->addProxy(new Proxy\OpcacheProxy());
     $cache->addProxy(new Proxy\PhpProxy());
     $cache->opcache_reset();
     echo 'a';
 }