for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebTheory\Saveyour\Field\Abstracts;
use WebTheory\Html\AbstractHtmlElement;
abstract class AbstractValuableElement extends AbstractHtmlElement
{
/**
* @var mixed
*/
protected $value;
* @return mixed
public function getValue()
return $this->value;
}
* @param mixed $value
*
* @return $this
public function setValue($value): AbstractValuableElement
$this->value = $value;
return $this;