for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dekalee\AdbackAnalytics\Generator;
use Dekalee\AdbackAnalytics\Driver\ScriptCacheInterface;
/**
* Class AbstractScriptGenerator
*/
abstract class AbstractScriptGenerator
{
protected $cache;
* @param ScriptCacheInterface $cache
public function __construct(ScriptCacheInterface $cache)
$this->cache = $cache;
}