mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
This isn't used and is derivable from the indent
This commit is contained in:
@ -9,9 +9,6 @@ final class Line
|
|||||||
/** @var int */
|
/** @var int */
|
||||||
private $indent;
|
private $indent;
|
||||||
|
|
||||||
/** @var string */
|
|
||||||
private $indentString;
|
|
||||||
|
|
||||||
/** @var int */
|
/** @var int */
|
||||||
private $indentOffset;
|
private $indentOffset;
|
||||||
|
|
||||||
@ -34,7 +31,6 @@ final class Line
|
|||||||
|
|
||||||
$this->indent = \strspn($lineWithoutTabs, ' ');
|
$this->indent = \strspn($lineWithoutTabs, ' ');
|
||||||
$this->text = \substr($lineWithoutTabs, $this->indent);
|
$this->text = \substr($lineWithoutTabs, $this->indent);
|
||||||
$this->indentString = \substr($lineWithoutTabs, 0, $this->indent);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @return int */
|
/** @return int */
|
||||||
|
Reference in New Issue
Block a user