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