Merged in bugfix/PMCORE-3937 (pull request #8528)

PMCORE-3937

Approved-by: Julio Cesar Laura Avendaño
This commit is contained in:
Luciana Nuñez
2022-08-25 14:15:30 +00:00
committed by Julio Cesar Laura Avendaño

View File

@@ -288,7 +288,14 @@ class Bpmn extends Handler
return $response;
}
public function exists($projectUid)
/**
* This method verifies if a project exists
*
* @param string $projectUid Unique id of Project
*
* return boolean
*/
public static function exists($projectUid)
{
try {
$obj = ProjectPeer::retrieveByPK($projectUid);