for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace kalanis\Pohoda\Common;
trait OneDirectionalVariablesTrait
{
protected bool $useOneDirectionalVariables = false;
public function setDirectionalVariable(bool $value): self
$this->useOneDirectionalVariables = $value;
return $this;
}