for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\kw_files\Processing;
/**
* trait TPath
* @package kalanis\kw_files\Processing
*/
trait TPath
{
protected string $path = '';
public function setPath(string $path = ''): void
$this->path = $path;
}
public function getPath(): string
return $this->path;