for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebTheory\Saveyour\Concerns;
trait SelectionFormatterTrait
{
/**
*
*/
protected function removeClearControl(&$value)
if (in_array('', $value)) {
$value = array_filter($value, function ($entry) {
return '' !== $entry;
});
}