PATH:
home
/
centosnipponia
/
public_html
/
apptt
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Sharding
/
ShardChoser
<?php namespace Doctrine\DBAL\Sharding\ShardChoser; use Doctrine\DBAL\Sharding\PoolingShardConnection; /** * The MultiTenant Shard choser assumes that the distribution value directly * maps to the shard id. * * @deprecated */ class MultiTenantShardChoser implements ShardChoser { /** * {@inheritdoc} */ public function pickShard($distributionValue, PoolingShardConnection $conn) { return $distributionValue; } }
[+]
..
[-] MultiTenantShardChoser.php
[edit]
[-] ShardChoser.php
[edit]
[-] .htaccess.disabled
[edit]