for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\kw_forms\Controls;
trait TKey
{
protected string $key = '';
public function setKey(string $key): self
$this->key = $key;
return $this;
}
public function getKey(): string
return $this->key;