You are here

public function UserUpdate::__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/UserUpdate.php, line 65

Class

UserUpdate
A job to update a Drupal user based on an Apigee Edge developer.

Namespace

Drupal\apigee_edge\Job

Code

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