class UserDeveloperConversionResult in Apigee Edge 8
Base class for user-developer conversion results.
@internal
Hierarchy
- class \Drupal\apigee_edge\Structure\UserDeveloperConversionResult
Expanded class hierarchy of UserDeveloperConversionResult
File
- src/
Structure/ UserDeveloperConversionResult.php, line 28
Namespace
Drupal\apigee_edge\StructureView source
class UserDeveloperConversionResult {
/**
* Number of successfully applied _necessary_ changes.
*
* @var int
*/
protected $successfullyAppliedChanges;
/**
* Problems occurred meanwhile the conversion.
*
* @var \Drupal\apigee_edge\Exception\UserDeveloperConversionException[]
*/
protected $problems;
/**
* UserDeveloperConversionResult constructor.
*
* @param int $successfully_applied_changes
* Number of successfully applied _necessary_ changes.
* (It should not contains redundant changes, ex.: when the property value
* has not changed.)
* @param \Drupal\apigee_edge\Exception\UserDeveloperConversionException[] $problems
* Problems occurred meanwhile the conversion (ex.: field validation errors,
* etc.)
*/
public function __construct(int $successfully_applied_changes, array $problems = []) {
$this->successfullyAppliedChanges = $successfully_applied_changes;
$this->problems = $problems;
}
/**
* Number of _necessary_ changes that were successfully applied.
*
* @return int
* Number of changes.
*/
public function getSuccessfullyAppliedChanges() : int {
return $this->successfullyAppliedChanges;
}
/**
* Problems occurred meanwhile the conversion.
*
* @return \Drupal\apigee_edge\Exception\UserDeveloperConversionException[]
* Array of problems.
*/
public function getProblems() : array {
return $this->problems;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UserDeveloperConversionResult:: |
protected | property | Problems occurred meanwhile the conversion. | |
UserDeveloperConversionResult:: |
protected | property | Number of successfully applied _necessary_ changes. | |
UserDeveloperConversionResult:: |
public | function | Problems occurred meanwhile the conversion. | |
UserDeveloperConversionResult:: |
public | function | Number of _necessary_ changes that were successfully applied. | |
UserDeveloperConversionResult:: |
public | function | UserDeveloperConversionResult constructor. | 2 |