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