for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yaro\Jarboe\Table\CrudTraits;
trait BatchCheckboxesTrait
{
private $batchCheckboxesEnabled = false;
public function enableBatchCheckboxes(bool $enabled = true)
$this->batchCheckboxesEnabled = $enabled;
}
public function isBatchCheckboxesEnabled(): bool
return $this->batchCheckboxesEnabled;