for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebTheory\Saveyour\Field;
use WebTheory\Saveyour\Contracts\Field\FormFieldInterface;
use WebTheory\Saveyour\Field\Type\Abstracts\AbstractFormField;
class DataOnly extends AbstractFormField implements FormFieldInterface
{
protected function renderHtmlMarkup(): string
return '';
}
public static function for(string $name): FormFieldInterface
$data = new static();
$data->setName($name);
return $data;