You are here

function _hosting_backend_invoke in Hosting 5

File

./hosting.queues.inc, line 193

Code

function _hosting_backend_invoke($cmd, $task) {
  $proc = _drush_proc_open($cmd, FALSE);
  if ($proc['output']) {
    $values = drush_backend_parse_output($proc['output'], FALSE);
  }
  return FALSE;
}