mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-21 01:41:00 +01:00
18 lines
393 B
PHP
18 lines
393 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\FileFormatter\Exception;
|
|
|
|
use UnexpectedValueException;
|
|
final class ParseIndentException extends \UnexpectedValueException
|
|
{
|
|
/**
|
|
* @return $this
|
|
*/
|
|
public static function fromString(string $string)
|
|
{
|
|
$message = \sprintf('The content "%s" could not be parsed', $string);
|
|
return new self($message);
|
|
}
|
|
}
|