for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Folk\Formats;
use FormManager\Fields;
use FormManager\Elements;
use FormManager\Builder;
use Folk\Entities\EntityInterface;
class RelationMany extends RelationOne
{
public function __construct(Builder $builder, EntityInterface $related)
parent::__construct($builder, $related);
$this->input->multiple();
}