for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Redislabs\Module\ReJSON;
final class Path
{
private $path;
public function __construct(?string $path = '.')
$this->path = $path;
}
public function getPath() : string
return $this->path;
return $this->path
null
string