for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Yii\Debug\Tests\Unit\Storage;
use Yiisoft\Yii\Debug\DebuggerIdGenerator;
use Yiisoft\Yii\Debug\Storage\MemoryStorage;
use Yiisoft\Yii\Debug\Storage\StorageInterface;
final class MemoryStorageTest extends AbstractStorageTest
{
public function getStorage(DebuggerIdGenerator $idGenerator): StorageInterface
return new MemoryStorage($idGenerator);
}