for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\kw_storage\Storage\Key;
use kalanis\kw_storage\Interfaces\Target\IKey;
/**
* Class DefaultKey
* @package kalanis\kw_storage\Key
* Change nothing - keys are valid as they are
*/
class DefaultKey implements IKey
{
public function fromSharedKey(string $key): string
return $key;
}