You are here

public function TextFieldMapping::__toString in FillPDF 5.0.x

Same name and namespace in other branches
  1. 8.4 src/FieldMapping/TextFieldMapping.php \Drupal\fillpdf\FieldMapping\TextFieldMapping::__toString()

Return parent::getData().

Return value

string The return value of parent::getData().

File

src/FieldMapping/TextFieldMapping.php, line 32

Class

TextFieldMapping
Represents a mapping between a PDF text field and a merge value.

Namespace

Drupal\fillpdf\FieldMapping

Code

public function __toString() {
  return parent::getData();
}