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