for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* This file is part of phpFastCache.
* @license MIT License (MIT)
* For full copyright and license information, please see the docs/CREDITS.txt file.
* @author Khoa Bui (khoaofgod) <[email protected]> https://www.phpfastcache.com
* @author Georges.L (Geolim4) <[email protected]>
*/
declare(strict_types=1);
namespace Phpfastcache\Drivers\Couchbasev3;
use Phpfastcache\Drivers\Couchbase\Config as CoubaseV2Config;
class Config extends CoubaseV2Config
{
* @var string
protected $bucketName = 'phpfastcache';
protected $scopeName = self::DEFAULT_VALUE;
protected $collectionName = self::DEFAULT_VALUE;
* @return string
public function getScopeName(): string
return $this->scopeName;
}
* @param string $scopeName
* @return Config
public function setScopeName(string $scopeName): Config
$this->scopeName = $scopeName;
return $this;
public function getCollectionName(): string
return $this->collectionName;
* @param string $collectionName
public function setCollectionName(string $collectionName): Config
$this->collectionName = $collectionName;