And deprecated aliases for the the no namespaced classes. ReplicatedBagOStuff that already is deprecated isn't moved. Bug: T353458 Change-Id: Ie01962517e5b53e59b9721e9996d4f1ea95abb51
12 lines
323 B
PHP
12 lines
323 B
PHP
<?php
|
|
|
|
/**
|
|
* @group BagOStuff
|
|
* @covers \Wikimedia\ObjectCache\WinCacheBagOStuff
|
|
* @requires extension wincache
|
|
*/
|
|
class WinCacheBagOStuffIntegrationTest extends BagOStuffTestBase {
|
|
protected function newCacheInstance() {
|
|
return $this->getServiceContainer()->getObjectCacheFactory()->getInstance( 'wincache' );
|
|
}
|
|
}
|