for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Graze\DataDb;
trait SoftColumnTrait
{
/** @var string|null */
protected $added = null;
protected $updated = null;
protected $deleted = null;
/**
* @return string|null
*/
public function getSoftAdded()
return $this->added;
}
public function getSoftUpdated()
return $this->updated;
public function getSoftDeleted()
return $this->deleted;
* @param null|string $added
*
* @return static
public function setSoftAdded($added)
$this->added = $added;
return $this;
* @param null|string $updated
public function setSoftUpdated($updated)
$this->updated = $updated;
* @param null|string $deleted
public function setSoftDeleted($deleted)
$this->deleted = $deleted;