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