You are here

DeprecationMessage.php in Upgrade Status 8.3

Same filename and directory in other branches
  1. 8.2 src/DeprecationMessage.php

File

src/DeprecationMessage.php
View source
<?php

declare (strict_types=1);
namespace Drupal\upgrade_status;


/**
 * A value object containing a deprecation message with some metadata.
 */
class DeprecationMessage {

  /**
   * The message.
   *
   * @var string
   */
  protected $message;

  /**
   * The line associated to the deprecation message.
   *
   * @var int
   */
  protected $line;

  /**
   * The file related to the deprecation message.
   *
   * @var string
   */
  protected $file;

  /**
   * Constructs a new deprecation message.
   *
   * @param string $message
   *   The message.
   * @param string $file
   *   The file related to the deprecation message.
   * @param int $line
   *   The line associated to the deprecation message.
   */
  public function __construct(string $message, string $file = '', int $line = 0) {
    $this->message = $message;
    $this->file = $file;
    $this->line = $line;
  }

  /**
   * Gets the message.
   *
   * @return string
   */
  public function getMessage() : string {
    return $this->message;
  }

  /**
   * Gets the file.
   *
   * @return string
   */
  public function getFile() : string {
    return $this->file;
  }

  /**
   * Gets the line.
   *
   * @return int
   */
  public function getLine() : int {
    return $this->line;
  }

  /**
   * Sets the line value.
   *
   * @param int $line
   *   The line associated to the deprecation message.
   */
  public function setLine(int $line) {
    $this->line = $line;
  }

  /**
   * Sets the file value.
   *
   * @param string $file
   *   The file related to the deprecation message.
   */
  public function setFile(string $file) {
    $this->file = $file;
  }

}

Classes

Namesort descending Description
DeprecationMessage A value object containing a deprecation message with some metadata.