Enhance sample code

This commit is contained in:
Laurent Destailleur 2021-04-06 14:59:03 +02:00
parent 10fb793fb1
commit a16f70ca09

View File

@ -273,7 +273,11 @@ class MyObject extends CommonObject
*/
public function create(User $user, $notrigger = false)
{
return $this->createCommon($user, $notrigger);
$resultcreate = $this->createCommon($user, $notrigger);
//$resultvalidate = $this->validate($user, $notrigger);
return $resultcreate;
}
/**