for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\kw_files\Processing\Storage\Dirs;
use kalanis\kw_files\Interfaces\IProcessDirs;
use kalanis\kw_files\Traits\TLang;
use kalanis\kw_files\Traits\TSubPart;
use kalanis\kw_paths\Extras\TPathTransform;
/**
* Class ADirs
* @package kalanis\kw_files\Processing\Storage\Dirs
* Process dirs in storages - deffer when you can access them directly or must be a middleman there
*/
abstract class ADirs implements IProcessDirs
{
use TPathTransform;
use TLang;
use TSubPart;
protected function getStorageSeparator(): string
return DIRECTORY_SEPARATOR;
}