for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Entity\Attribute\Accessor;
use App\Entity\Staff as StaffEntity;
/**
* Trait Staff
*/
trait Staff
{
* Set staff
*
* @param \App\Entity\Staff $staff
* @return object
public function setStaff(StaffEntity $staff = null)
$this->staff = $staff;
staff
return $this;
}
* Get staff
* @return \App\Entity\Staff
public function getStaff()
return $this->staff;