You are here

public function DeveloperCreate::__toString in Apigee Edge 8

Returns this job's textual representation.

Return value

string The string representation of the job.

Overrides Job::__toString

File

src/Job/DeveloperCreate.php, line 30

Class

DeveloperCreate
A job to create a developer on Apigee Edge.

Namespace

Drupal\apigee_edge\Job

Code

public function __toString() : string {
  return t('Copying user (@email) to Apigee Edge.', [
    '@email' => $this->email,
  ])
    ->render();
}