for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\kw_storage;
use kalanis\kw_storage\Interfaces\IStTranslations;
/**
* Class Translations
* @package kalanis\kw_storage
*/
class Translations implements IStTranslations
{
public function stCannotReadKey(): string
return 'Cannot read key';
}
public function stCannotReadFile(): string
return 'Cannot read file';
* @return string
* @codeCoverageIgnore VolumeStream
public function stCannotOpenFile(): string
return 'Cannot open file';
public function stCannotSaveFile(): string
return 'Cannot save file';
public function stCannotSeekFile(): string
return 'Cannot seek in file';
public function stCannotCloseFile(): string
return 'Cannot close opened file';
public function stStorageNotInitialized(): string
return 'Storage not initialized';