You are here

public function DeprecationMessage::setFile in Upgrade Status 8.3

Same name and namespace in other branches
  1. 8.2 src/DeprecationMessage.php \Drupal\upgrade_status\DeprecationMessage::setFile()

Sets the file value.

Parameters

string $file: The file related to the deprecation message.

File

src/DeprecationMessage.php, line 92

Class

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

Namespace

Drupal\upgrade_status

Code

public function setFile(string $file) {
  $this->file = $file;
}