public function DeveloperCreateUpdate::__construct in Apigee Edge 8
DeveloperCreateUpdate constructor.
Parameters
string $email: The email address of the developer.
Overrides Job::__construct
File
- src/Job/ DeveloperCreateUpdate.php, line 51 
Class
- DeveloperCreateUpdate
- Base class for user create/update sync jobs.
Namespace
Drupal\apigee_edge\JobCode
public function __construct(string $email) {
  parent::__construct();
  $this->email = $email;
}