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