1
0
mirror of https://github.com/erusev/parsedown.git synced 2025-09-03 03:42:38 +02:00

Remove unused $placeholder variable

This commit is contained in:
Daniel Rudolf
2016-10-13 19:31:35 +02:00
parent bdf537e9d5
commit 30ff5c6e75

View File

@@ -584,13 +584,11 @@ class Parsedown
return $Block;
}
elseif ($Block['indent'] === $Line['indent'] and $placeholder = $this->blockList($Line))
elseif ($Block['indent'] === $Line['indent'] and $this->blockList($Line))
{
return null;
}
unset($placeholder);
if ($Line['text'][0] === '[' and $this->blockReference($Line))
{
return $Block;