https://www.phpfastcache.com * @author Georges.L (Geolim4) * */ declare(strict_types=1); namespace Phpfastcache\Drivers\Leveldb; use Phpfastcache\Config\ConfigurationOption; class Config extends ConfigurationOption { /** * @var string */ protected $htaccess = true; /** * @return string */ public function getHtaccess(): string { return $this->htaccess; } /** * @param string $htaccess * @return self */ public function setHtaccess(string $htaccess): self { $this->htaccess = $htaccess; return $this; } }