You are here

UserDeveloperConversionResult.php in Apigee Edge 8

File

src/Structure/UserDeveloperConversionResult.php
View source
<?php

/**
 * Copyright 2018 Google Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301, USA.
 */
namespace Drupal\apigee_edge\Structure;


/**
 * Base class for user-developer conversion results.
 *
 * @internal
 */
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;
  }

}

Classes

Namesort descending Description
UserDeveloperConversionResult Base class for user-developer conversion results.