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 DirectionAsResponseTrait
{
protected bool $directionAsResponse = false;
public function setDirectionAsResponse(bool $value): self
$this->directionAsResponse = $value;
return $this;
}