X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=Civi%2FAPI%2FExternalBatch.php;h=f9ea3ae69cf271ebb7c66429998fce78fe170722;hb=0d6a6bfe7ac447daa344916f681e350ec349f688;hp=d2f039a85468c02de50c13191af25aa5d6863f65;hpb=d2118be269bed42c1398dd8c4da996caeaed6006;p=civicrm-core.git diff --git a/Civi/API/ExternalBatch.php b/Civi/API/ExternalBatch.php index d2f039a854..f9ea3ae69c 100644 --- a/Civi/API/ExternalBatch.php +++ b/Civi/API/ExternalBatch.php @@ -119,7 +119,7 @@ class ExternalBatch { while (!empty($this->processes)) { usleep(self::POLL_INTERVAL); foreach (array_keys($this->processes) as $idx) { - /** @var Process $process */ + /** @var \Symfony\Component\Process\Process $process */ $process = $this->processes[$idx]; if (!$process->isRunning()) { $parsed = json_decode($process->getOutput(), TRUE); @@ -179,7 +179,7 @@ class ExternalBatch { /** * @param array $apiCall * Array with keys: entity, action, params. - * @return Process + * @return \Symfony\Component\Process\Process * @throws \CRM_Core_Exception */ public function createProcess($apiCall) {