for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wikibase\QueryEngine\SQLStore;
/**
* Configuration for the SQL Store.
* This is purely a value object containing the configuration declaration.
* Access to things config specific (such as the database tables) should
* happen through specific objects (such as the Schema class).
*
* @since 0.1
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
class StoreConfig {
* @var string
private $storeName;
* @param string $storeName
public function __construct( $storeName ) {
$this->storeName = $storeName;
}
* @return string
public function getStoreName() {
return $this->storeName;