Doctrine\Common\Annotations\CachedReader::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Doctrine\Common\Annotations\Reader $reader, Doctrine\Common\Cache\Cache $cache, boolean $debug = false )
$reader Doctrine\Common\Annotations\Reader
$cache Doctrine\Common\Cache\Cache
$debug boolean
    public function __construct(Reader $reader, Cache $cache, $debug = false)
    {
        $this->delegate = $reader;
        $this->cache = $cache;
        $this->debug = (bool) $debug;
    }