You are here

public function ParseException::setParsedFile in Lockr 7.3

Sets the filename where the error occurred.

Parameters

string $parsedFile The filename:

File

vendor/symfony/yaml/Exception/ParseException.php, line 84

Class

ParseException
Exception class thrown when an error occurs during parsing.

Namespace

Symfony\Component\Yaml\Exception

Code

public function setParsedFile($parsedFile) {
  $this->parsedFile = $parsedFile;
  $this
    ->updateRepr();
}