public function DeveloperUpdate::__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/ DeveloperUpdate.php, line 30
Class
- DeveloperUpdate
- A job to update an Apigee Edge developer based on a Drupal user.
Namespace
Drupal\apigee_edge\JobCode
public function __toString() : string {
return t('Updating developer (@email) in Apigee Edge.', [
'@email' => $this->email,
])
->render();
}