<?phpnamespace App\Entity;/** * MissionSearch * */class MissionSearch{ /** * @var \TblPersonnel */ public $personnel; /** * @var \RefGroupe */ public $groupe; /** * @var \RefTypeOperationTravail */ public $typeOperationTravail; function isVide() : bool { if( $this->personnel or $this->groupe or $this->typeOperationTravail){ return true; } return false; } }