for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Audiens\DoubleclickClient;
/**
* Class CachableTrait
*/
trait CachableTrait
{
* @var bool
protected $cacheEnabled;
* @return boolean
public function isCacheEnabled()
return $this->cacheEnabled;
}
public function disableCache()
$this->cacheEnabled = false;
public function enableCache()
$this->cacheEnabled = true;