for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Traits;
use Doctrine\ORM\Mapping as ORM;
trait DeletedByTrait
{
/**
* @var string
* @ORM\Column(type="string", nullable=true)
*/
protected $deletedBy;
public function getDeletedBy()
return $this->deletedBy;
}
public function setDeletedBy($deletedBy)
$this->deletedBy = $deletedBy;