for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebTheory\Saveyour\Field\Abstracts;
use WebTheory\Saveyour\Contracts\Field\Selection\CompositeFieldSelectionProviderInterface;
trait CompositeSelectionFieldTrait
{
use SelectionFieldTrait;
/**
* @var CompositeFieldSelectionProviderInterface
*/
protected $selectionProvider;
protected function defineSelectionLabel($selection): string
return $this->selectionProvider->defineSelectionLabel($selection);
}
protected function defineSelectionId($selection): string
return $this->selectionProvider->defineSelectionId($selection);