And deprecated aliases for the the no namespaced classes. ReplicatedBagOStuff that already is deprecated isn't moved. Bug: T353458 Change-Id: Ie01962517e5b53e59b9721e9996d4f1ea95abb51
13 lines
264 B
PHP
13 lines
264 B
PHP
<?php
|
|
|
|
use Wikimedia\ObjectCache\HashBagOStuff;
|
|
|
|
/**
|
|
* @group BagOStuff
|
|
* @covers \Wikimedia\ObjectCache\HashBagOStuff
|
|
*/
|
|
class HashBagOStuffIntegrationTest extends BagOStuffTestBase {
|
|
protected function newCacheInstance() {
|
|
return new HashBagOStuff();
|
|
}
|
|
}
|