You are here

ValidationErrorInterface.php in Backup and Migrate 8.4

File

lib/backup_migrate_core/src/Config/ValidationErrorInterface.php
View source
<?php

namespace BackupMigrate\Core\Config;


/**
 * Interface ValidationErrorInterface.
 *
 * @package BackupMigrate\Core\Config
 */
interface ValidationErrorInterface {

  /**
   * @return string
   */
  public function getMessage();

  /**
   * @return array
   */
  public function getReplacement();

  /**
   * @return string
   */
  public function getFieldKey();

}

Interfaces

Namesort descending Description
ValidationErrorInterface Interface ValidationErrorInterface.