PMCORE-3937

This commit is contained in:
Luciana Nuñez
2022-08-22 12:31:03 -04:00
parent 3706ac353b
commit f3693c7d4e

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);